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-file 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-dir your_webapp_directory
        

Changing the HTTP port

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


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

Limitations

Where are the sources?

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

Maven plugin

If you are looking for Maven integration, see our Maven plugin.


Back to Getting Started