Grails 2.3 & GGTS 3.4 stop button not working
问题 How to stop grails processes in GGTS 3.4 with grails 2.3. the stop button of GGTS is not stopping the server running and the java.exe processes are still showing in task manager. 回答1: Comment the grails.project.fork = [ .. ] part of your BuildConfig.groovy file. This part enables running run-app, test-app and war in different threads(so you don't have to stop one to start the other), and it seems ggts isn't successfully destroying the thread right now. For reference, here is the related issue