类 MissingServletRequestPartException

  • 所有已实现的接口:
    Serializable

    public class MissingServletRequestPartException
    extends ServletException
    Raised when the part of a "multipart/form-data" request identified by its name cannot be found.

    This may be because the request is not a multipart/form-data request, because the part is not present in the request, or because the web application is not configured correctly for processing multipart requests, e.g. no MultipartResolver.

    从以下版本开始:
    3.1
    作者:
    Rossen Stoyanchev
    另请参阅:
    序列化表格
    • 构造器详细资料

      • MissingServletRequestPartException

        public MissingServletRequestPartException​(String requestPartName)
        Constructor for MissingServletRequestPartException.
        参数:
        requestPartName - the name of the missing part of the multipart request
    • 方法详细资料