Netbeans 和 Grails - 停止服务器
在 Netbeans IDE 中停止 Grails Web 服务器的正确方法是什么? 在运行项目 (F6) 后,我只是重建项目来执行此操作。有更好的办法吗?
What is the correct way to stop the web server for Grails in the Netbeans IDE?
After I Run Project (F6), I have been just rebuilding the project to do this. Is there a better way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您查看“输出”选项卡,您可以找到标记为(运行应用程序)的任务,然后选择“停止”图标(中心有一个白点的红色方块)来停止应用程序。
If you look under the output tab you can find the task labelled (run-app) and select the Stop icon (a Red Square with a White dot at the center) to stop the application.
这不是真的。在终端中输入“ps aux | grep grails”,然后您将看到与该应用程序关联的数字,然后输入“kill -9(然后是数字)”,它将停止所有进程
This is not true. Type in your terminal "ps aux | grep grails" then you will see a number associated with the app and type "kill -9 (then the number)" and it will stop all process
没有特殊的 Grails 命令来停止正在运行的服务器,因此只需使用 Netbeans 提供的任何命令来停止从 IDE 内部启动的项目
There is no special Grails command to stop a running server, so just use whatever Netbeans provides to stop a project that was started from inside the IDE