我试图在Netbeans Maven Web项目中使用Jetty(而不是Glassfish或Tomcat)。我已经设法使运行和调试工作如下:
-
添加插件到pom.xml:
<plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> <version>7.4.4.v20110707</version> <configuration> <scanIntervalSeconds>5</scanIntervalSeconds> </configuration> </plugin>
-
Project Properties -> Run -> Server ->
<No Server Selected>
- 项目属性->操作->运行项目->目标=
jetty:run
- 项目属性->操作->调试项目->目标=
jetty:run
,将jpda.listen=maven
添加到设置属性
关于如何让"配置文件项目"行动工作的任何想法?
这似乎还不支持:https://netbeans.org/bugzilla/show_bug.cgi?id=200771