저는 Spring-MVC를 사용하여 편안한 서비스를 구축하고 있습니다. multipart-form을 사용하여 POST 요청을 처리 할 때 게시 된 파일 크기를 제한하려고합니다.Servlet 3.0의 multipart-config가 max-file-size에서 작동하지 않습니다.
<web-app version="3.0"...
//...other code omitted
<servlet>
<servlet-name>restful</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/appServlet/restful-context.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
<multipart-config>
<max-file-size>500</max-file-size>
</multipart-config>
</servlet>
그리고 내 편안한-context.xml에 같은입니다 : 일반적 접근 방식은 다음과 같다
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">
<mvc:annotation-driven>
<mvc:message-converters>
<beans:bean
class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter" />
</mvc:message-converters>
</mvc:annotation-driven>
<beans:bean
class="org.springframework.web.multipart.support.StandardServletMultipartResolver"
id="multipartResolver" />
//...
</beans:beans>
위는 PRO SPRING 4이해야 할 나에게 말한다 것입니다. 그러나 max-file-size는 적용되지 않습니다. 매우 큰 파일 (1GB 근처)을 올리려고했지만 아무런 예외도 발생하지 않았습니다. 하나가 도움이 되나요?
나중에 내가 대신 내가 다음과 같이, @MultipartConfig를 사용하여 ( @RE350 덕분에)에 annotaion 스타일을 시도,의 web.xml에서 DispatcherServlet을 구성을 제거 :
@WebServlet(loadOnStartup = 1, name = "restful", urlPatterns = { "/restful/*" }, initParams = { @WebInitParam(name = "contextConfigLocation", value = "/WEB-INF/spring/appServlet/restful-context.xml") })
@MultipartConfig(maxFileSize = 500)
public class MyDispatcherServlet extends DispatcherServlet {}
을 그리고 그것은 workded! 왜 web.xml 방식이 작동하지 않습니까? 답변을 기다리는 중.
, 그것은 3+ 컨테이너 서블릿하지 않습니다 수 있습니다 ? –
@BijuKunjummen STS가 내장 된 Pivotal tc Server를 사용하고 있는데이 서버는 임베디드 tomcat 8.0.9를 사용해야합니다. – ldn0x7dc