美文网首页
在IDEA使用jetty插件出现 cannot save the

在IDEA使用jetty插件出现 cannot save the

作者: linghuozi | 来源:发表于2019-02-28 11:36 被阅读0次

    在IDEA使用jetty插件出现 cannot save the file的错误,

    网上搜了一下,主要由两种解决方案,

    - 一种试在IDEA中关闭,safe write开关。

    - 一种是在项目目录中新增一个只给jetty用的web.xml文件。

    第一种,不解决问题,因为问题是由jetty引起的,不是由IDEA引起的。第二种很麻烦需要改项目中的文件。

    在goog上搜了下,最简单的方法是在jetty插件的配置中加入如下配置:

    <webApp>

      <_initParams>

              <org.eclipse.jetty.servlet.Default.useFileMappedBuffer>false</org.eclipse.jetty.servlet.Default.useFileMappedBuffer>

      </_initParams>

    </webApp>

    问题可以简单解决。

    参考链接:https://github.com/eclipse/jetty.project/issues/2925

    相关文章

      网友评论

          本文标题:在IDEA使用jetty插件出现 cannot save the

          本文链接:https://www.haomeiwen.com/subject/dykhuqtx.html