Piranha Micro

Installing Piranha Micro

Download the JAR file from Maven Central.

Running with a WAR file

If you have a WAR file you can use the command line below:


  java -jar piranha-micro.jar --war your_webapplication.war
        

Running with an exploded WAR file

If you have an exploded directory containing the contents of your WAR file you can use the command line below:


  java -jar piranha-micro.jar --webapp your_webapp_directory
        

Changing the HTTP port

If you want to use a different HTTP port (e.g to port 8888) you can use --port as illustrated by the command line below:


  java -jar piranha-micro.jar --war your_webapplication.war --port 8888
        

Additional customizations

Limitations

Where are the sources?

See GitHub at https://github.com/piranhacloud/piranha/tree/master/micro


Back to Getting Started