Unable to process parts as no multi-part configuration has been provided에러는 톰켓 8.5 버전을 사용할 때 파일을 업로드하려고 했더니 오류가 났다.
이 오류를 해결하기 위해서는 Server의 web.xml을 수정해 주어야 한다.
수정전 web.xml
수정후 web.xml
<Context allowCasualMultipartParsing="true" path="/">
<!-- Default set of monitored resources. If one of these changes, the -->
<!-- web application will be reloaded. -->
<WatchedResource>WEB-INF/web.xml</WatchedResource>
<WatchedResource>${catalina.base}/conf/web.xml</WatchedResource>
<Resources cachingAllowed="true" cacheMaxSize="100000" />
<!-- Uncomment this to disable session persistence across Tomcat restarts -->
<!--
<Manager pathname="" />
-->
</Context>
'error > Spring' 카테고리의 다른 글
java.lang.ClassNotFoundException 에러 해결 방법 (6) | 2020.10.07 |
---|---|
[스프링 Error] org.json.simple.JSONObject cannot be cast to net.sf.json.JSONObject (0) | 2019.10.11 |
ajax로 list넘길때 406에러 (0) | 2019.09.20 |
스프링 JSON 406에러 (0) | 2019.06.24 |
스프링 Mybatis 에러 :: getCLOB not implemented for class oracle.jdbc.driver.T4CLongAccessor (0) | 2019.05.10 |