Netbeans and Grails - stop server
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?
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.
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
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
精彩评论