Fix MultipartResolver javadoc implementation refs

Before this fix MultipartResolver javadoc mentioned that there is only
one concrete implementation included in Spring. This was true as of
Spring 2.5 but Spring 3.1 added another one, Servlet 3.0 Part API based
implementation.

This fix changes MultipartResolver javadoc so that the other one,
StandardServletMultipartResolver implementation, gets also listed.
Changed javadoc mentions also as of which version does Spring bundle
two MultipartResolver implementations.

Issue: SPR-5984
master
Stevo Slavic 13 years ago
parent 6295f2b591
commit 104f13e43f
  1. 4
      spring-web/src/main/java/org/springframework/web/multipart/MultipartResolver.java

@ -24,10 +24,10 @@ import javax.servlet.http.HttpServletRequest;
* Implementations are typically usable both within an application context
* and standalone.
*
* <p>There is only one concrete implementation included in Spring,
* as of Spring 2.5:
* <p>There are two concrete implementations included in Spring, as of Spring 3.1:
* <ul>
* <li>{@link org.springframework.web.multipart.commons.CommonsMultipartResolver} for Jakarta Commons FileUpload
* <li>{@link org.springframework.web.multipart.support.StandardServletMultipartResolver} for Servlet 3.0 Part API
* </ul>
*
* <p>There is no default resolver implementation used for Spring

Loading…
Cancel
Save