Tomcat file server upload file error

Tomcat file server upload file error


Add this code to the org.apache.catalina.servlets.DefaultServlet node in Tomcat's web.xml

<init-param>   
		   <param-name>readonly</param-name>   
		   <param-value>false</param-value>   
</init-param>

tomcat refuses to write

Guess you like

Origin blog.csdn.net/qq_41844287/article/details/90450450