Starting Grails 3 application does not return after loading

I am using the Grails 3.0.1 interactive console, and when I type the run-app command, I expected it to start the server and return to the prompt. Instead, he did something like:

grails> run-app > Configuring > 1/1 projects > Resolving dependencies ':agent' > Resolving dependencies ':versio :compileJava UP-TO-DATE > Building 16% > :compileGroovy > Resolving dependencies ':compile' > Resolving dependencies 'de :compileGroovy UP-TO-DATE :processResources :classes :findMainClass > Building 83% > :bootRun > Resolving dependencies ':runtime' > Resolving dependencies 'detached:bootRun Grails application running at http://localhost:8080 > Building 83% > :bootRun 

At this point, the system waits until I press Ctrl-C. I thought the system would start and then return to the prompt. Am I missing something? Do I just have to wait?

+7
grails
source share
1 answer

This is a legacy error from spring boot, which is now fixed and will be available in the next version, possibly 3.0.3.

0
source share

All Articles