如何终止 NetBeans 中正在运行的 Maven 构建?
如果我在 NetBeans 中运行 Maven 构建,该构建启动了长时间运行的 Java 进程(例如 HTTP 侦听器或 JMX 代理),则终止该进程似乎没有任何效果。 所以我必须重新启动 NetBeans 并手动终止进程。 我在 Windows XP 和 Vista 上使用 NetBeans 6.5 和 6.7 RC 1。
If I run a Maven build in NetBeans which starts a long-running Java process (for example a HTTP listener or a JMX agent), terminating the process seems to have no effect. So I have to restart NetBeans and terminate the processes manually. I am using NetBeans 6.5 and 6.7 RC 1 on Windows XP and Vista.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
基本上它在当前版本的 Netbeans 中已损坏,请参阅: http://www.netbeans .org/issues/show_bug.cgi?id=135475
我所做的就是停止构建,然后找到 Java 进程并将其终止。 只需确保终止 Maven 构建进程而不是 IDE。 无需重新启动 Netbeans。 如果您的进程有另一种关闭方式(例如 Tomcat 的关闭命令),您可以使用运行该进程的 exec 插件创建自定义 Maven 目标。
Basically it's broken in current versions of Netbeans, see: http://www.netbeans.org/issues/show_bug.cgi?id=135475
What I do is just stop the build and then go find the Java process and kill it. Just make sure you kill the Maven build process and not the IDE. No need to restart Netbeans. If your process has an alternate way to shut down (like Tomcat's shutdown command) you could just create a custom Maven goal using the exec plugin that ran that.