Request processing failed; returned a response status of 403 Forbidden
程序员文章站
2022-04-14 14:26:07
...
问题描述:
Request processing failed; nested exception is com.sun.jersey.api.client.UniformInterfaceException: PUT http://localhost:9090/fileupload_war/uploads/girl8.jpg514f55ea7962402a9e1a507ce2032fd7 returned a response status of 403 Forbidden原因分析:
tomcat服务器默认是不可写操作,只允许读解决方案:
提示:
tomcat.conf.web.xml 中DefaultServlet添加以下
<init-param>
<param-name>readonly</param-name>
<param-value>false</param-value>
</init-param>
上一篇: 卸载apr aprutil