Modify the default port number in a Grails project

Source: Internet
Author: User
Tags grails port number

Grails Project The default port number is 8080, how to modify it, search on the internet a lot is about using command line parameters, more trouble, each time you start to enter. Finally, we can use the following method to modify it, assuming the new port number is 9000:

1. Runtime changes

Each time you start a grails application, you can use the-dserver.port parameter to modify the default port number, and the command line service-initiated parameter changes to:

grails-dserver.port=9000 Run-app

2. Modify the project configuration file

First find the root directory of the application project, below the grails-app/conf directory, find the Buildconfig.groovy configuration file (no new one), add a new line inside

grails.server.port.http=9000

The other benefit of using the new port number every time you start the project is to use a different line parameter, and if you have several grails projects at the same time, you can assign them to separate port numbers and run them at the same time.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.