关于这个主题有很多可用的信息,但我无法让它在 Jetty 9 中工作。我发现的最新方法是:Jetty Maven Plugin is ignoring custom webdefault.xml
我从我的 Maven 存储库中提取了 webdefault.xml。然后我将其设置useFileMappedBuffer
为.false
jetty-maven-plugin-webdefault.xml
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>9.0.0.M4</version>
<configuration>
<webAppConfig>
<defaultsDescriptor>src/main/resources/jetty-maven-plugin-webdefault.xml<</defaultsDescriptor>
</webAppConfig>
</configuration>
</plugin>
当我执行时jetty:run
,我看到我的 webdefault.xml 被引用:
[INFO] Web defaults = src/main/resources/jetty-maven-plugin-webdefault.xml
但我在 Windows 中仍然存在文件锁定问题(使用 IntelliJ IDEA 11)。有谁知道解决方案?