在Netbeans 6.9中,如何更改应用程序服务器
在 Netbeans 6.9.1 中,我使用 Glassfish Server 3 创建了一个 Web 应用程序。
(在服务器文本框下,java ee 版本默认为“Java EE 6 Web”)。
现在我已经安装了 Apache tomcat 7(实际上它将其视为 6,因为 Netbeans 6.9.1 中未提供 7 版本)。
问题是我不再允许选择 Tomcat,它不会出现在项目属性的服务器组合框中。
如果我从头开始开发一个网络应用程序,我就可以。
我尝试过:
-删除 WEB-INF/sun-config.xml
-关闭并重新打开项目
In Netbeans 6.9.1, i've created a web application wiht Glassfish Server 3.
(Undert the server textbox, java ee version defautls to "Java EE 6 Web").
Now I've installed an Apache tomcat 7 (actually it sees it as 6 because the 7 version was not provided in Netbeans 6.9.1).
The problem is that i'm no more allowed to choose Tomcat, it doesn't appear in the server combobox of the project properties.
If I do a web app from scratch, i can.
I tried to:
-remove WEB-INF/sun-config.xml
-close and reopen the project
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您创建了 Java EE 6 项目,IDE 不会让您尝试将其部署到不支持 Java EE 6 的服务器上。NetBeans 6.9.1 不区分 Tomcat 6(支持 Servlet 2.5)和 Tomcat 7(支持Servlet 3.0)。 NetBeans 7.0 确实知道 Tomcat 7.0 可用于部署最初针对 GlassFish 3.0 或 3.1 的 Web 应用程序...
因此,适合您情况的最佳解决方案是安装 NetBeans 7.0。
If you created a Java EE 6 project, the IDE will not let you try to deploy it onto a server that does not support Java EE 6. NetBeans 6.9.1 does not distinguish between Tomcat 6 (which does Servlet 2.5) and Tomcat 7 (which supports Servlet 3.0). NetBeans 7.0 does know that Tomcat 7.0 can be used to deploy web apps that originally targeted GlassFish 3.0 or 3.1...
So the best solution for your situation is to install NetBeans 7.0.
在 Netbeans IDE 中更改应用程序服务器
Change Application Server in Netbeans IDE