2014-12-02 5 views
0

저는 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 방식이 작동하지 않습니까? 답변을 기다리는 중.

+0

, 그것은 3+ 컨테이너 서블릿하지 않습니다 수 있습니다 ? –

+0

@BijuKunjummen STS가 내장 된 Pivotal tc Server를 사용하고 있는데이 서버는 임베디드 tomcat 8.0.9를 사용해야합니다. – ldn0x7dc

답변

2

max-file-size는 바이트 값을 취한다고 생각합니다. 아래처럼 1024 * 1024로 500을 곱해야합니다. 당신은 스프링 MVC를 사용하는 경우

 <multipart-config> 
     <max-file-size>524288000</max-file-size> 
     <max-request-size>524288000</max-request-size> 
    </multipart-config> 

더 이상, 당신은 아래처럼 봄 서비스에 @MultiPartConfig 주석을 사용했을 수 있습니다.

@MultipartConfig(location="/tmp", fileSizeThreshold=1024*1024, 
    maxFileSize=1024*1024*5, maxRequestSize=1024*1024*5*5) 
0

당신의 필요 최대 파일 크기 모두 최대 요청 크기 및 파일 크기 임계 앱을 호스팅 않았다

<multipart-config> 
    <max-file-size>500</max-file-size> 
    <max-request-size>700</max-request-size> 
    <file-size-threshold>0</file-size-threshold> 
</multipart-config>