I\'m using grails 2.0.4. And I want to use port:8090 instead of 8080 for localhost. So need help to change the port to 8090 permanently.
This solution adds to the answers http://stackoverflow.com/a/10956283/122457. In Grails 2.x, add the following to BuildConfig.groovy:
BuildConfig.groovy
grails.server.port.http = 8090
See http://forum.springsource.org/archive/index.php/t-97024.html for further details.