当修改js文件后,需要重启jetty,才能保存js文件的问题解决

来源:互联网 发布:石油钻井英语翻译软件 编辑:程序博客网 时间:2024/06/05 06:03

在jetty.xml中将useFileMappedBuffer修改为

 <init-param>

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

    </init-param>

然后查看pom.xml中webAppConfig是否添加

<webAppConfig>
<defaultsDescriptor>jetty.xml</defaultsDescriptor>
</webAppConfig>

阅读全文
0 0
原创粉丝点击