Social Icons

twitterfacebookgoogle pluslinkedinrss feed

Tuesday, May 15, 2012

Change Jetty Server Running Port

Jetty is one one of the best development server which I have ever used. It is easy to work with jetty server and its light weight

Here I am going to show how to change jetty server running port.  Jetty server default running port is 8080. 

Port with Maven: 

  1.  Command line:
  2.          For starting jetty server we are using mvn jetty:run command. We can change the port jetty server running by passing run time argument to it.

             mvn -Djetty.port=80 jetty:run


  3.  Using pom.xml

                By changing jetty plugin system properties as below, you can change the jetty running port.

 org.mortbay.jetty
 maven-jetty-plugin
 
  9966
  foo
  
   
    jetty.port
    80