Jetty启动js修改后无法保存的问题

jetty 缓存了静态的html,js 和css等,修改保存时经常会提示 “save could not be completed”。

解决方案是:

1.修改jetty jar包里面的webdefault.xml ,把useFileMappedBuffer改为false

<init-param>
  <param-name>useFileMappedBuffer</param-name>
  <param-value>false</param-value> 默认是true
</init-param>

2.重新clean,install maven工程

3.重启jetty



你可能感兴趣的:(save,could,be,not,js无法保存,completed)