码迷,mamicode.com
首页 > Web开发 > 详细

maven jetty 启动后,不能修改静态文件,js,css,html

时间:2017-07-03 12:06:42      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:设置   pom   init   val   color   app   文件   不同   value   

解决办法:

1.从jetty的jar包中(位置可能不同,有的jetty-web中)拷贝一份webdefault.xml文件

2.将webdefault.xml 中的useFileMappedBuffer  设置为false。

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

3.将webdefault.xml文件放在maven web 的pom同级目录
4.修改maven中<configuration>属性,在属性中添加如下配置

<webAppConfig>
<contextPath>/meds</contextPath>
<defaultsDescriptor>webdefault.xml</defaultsDescriptor>
</webAppConfig>

注意:jetty版本不同,可能配置并不相同,有可能不好用,以上配置是在9.4.1.v20170120中是好用的,但在别的版本下可能不好用。

maven jetty 启动后,不能修改静态文件,js,css,html

标签:设置   pom   init   val   color   app   文件   不同   value   

原文地址:http://www.cnblogs.com/developer-os/p/7109843.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!