samedi 22 juin 2013

Comment changer le numéro de port du serveur dans votre application Grails ?

Dans votre application web, il faut editer conf/BuildConfig.groovy de la manière suivante ;

grails.server.port.http = 8090

Exemple :
grails.project.dependency.resolution = {
    // inherit Grails' default dependencies
    inherits("global") {
        // specify dependency exclusions here; for example, uncomment this to disable ehcache:
        // excludes 'ehcache'
        grails.server.port.http = 8090
    }
    log "error" // log level of Ivy resolver, either 'error', 'warn', 'info', 'debug' or 'verbose'
    checksums true // Whether to verify checksums on resolve
    legacyResolve true // whether to do a secondary resolve on plugin installation, not advised but here for backwards compatibility

Cette astuce vient de http://stackoverflow.com/questions/10955899/how-to-change-grails-localhost-port

Aucun commentaire:

Enregistrer un commentaire