向现有 Netbeans Scala 项目添加 Tomcat 支持
我有一个 Scala 项目,现在希望 Netbeans 将其与 Tomcat 集成。现在我正在手动将文件复制到 Tomcat 目录中(通过 build.xml)。有没有什么方法可以配置 Netbeans 将其识别为 Web 应用程序并在运行时自动部署它?
I have a Scala project and I now want Netbeans to integrate it with Tomcat. Right now I am manually copying the files into Tomcat directory (via build.xml). Is there any way where I can configure Netbeans to recognize it as a web-application and automatically deploy it on run?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将其配置为 Maven 项目并使用 Maven Tomcat 插件。 Netbeans可以处理maven,maven可以处理tomcat。
我自己使用 scala/lift/netbeans 进行开发,最终使用了 sbt 的连续编译功能。这非常方便,因为您可以将其配置为在更改源时自动重新部署,并且它会在 2 秒左右的时间内完成。但它没有集成到 netbeans 或任何东西中(尽管您当然可以配置 Netbeans 来调用 sbt)。
You could configure it as a maven project and use the maven tomcat plugin. Netbeans can handle maven and maven can handle tomcat.
I develop in scala/lift/netbeans myself and ended up using sbt's continuous compilation feature. That is quite handy because you can configure it to automatically redeploy if you change sources and it does that within 2 seconds or so. But its not integrated into netbeans or anything (allthough you can of course configure Netbeans to call sbt).