我是靠谱客的博主 年轻高山,这篇文章主要介绍jersey 上传图片报错returned a response status of 403 Forbidden 和returned a response status of 409 Conflict,现在分享给大家,希望可以做个参考。
returned a response status of 403 Forbidden
tomcat服务器默认是不可写操作,只允许读,所以在Tomcat web.xml文件中的servlet标签内加入(注意o字母为小写,大概在配置文件的98行左右。)
复制代码
1
2
3
4
5
<init-param>
<param-name>readonly</param-name>
<param-value>false</param-value>
</init-param>
returned a response status of 409 Conflict
最后
以上就是年轻高山最近收集整理的关于jersey 上传图片报错returned a response status of 403 Forbidden 和returned a response status of 409 Conflict的全部内容,更多相关jersey内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复