Archive

Posts Tagged ‘maven and Jetty’

Change Jetty port

Just a quick TIP.

How change the port that Jetty start? As default Jetty start in 8080.

Just add the parameter in your command line:
-Djetty.port=8181

By that the full command to start could be:
java -Djetty.port=8181 -jar start.jar

If you use maven to start Jetty, could use the same parameter:
mvn -Djetty.port=8181 jetty:run