Tuesday, February 04, 2014

Spring Boot application on Heroku

In this blog post I would like to demonstrate how easy is to deploy a simple Spring Boot application on Heroku.
  • Sign up for a Heroku account
  • Download the Heroku Toolbelt, which is tool to manage Heroku applications from command line
  • Login to heroku and set up SSH keys
$ heroku login
$ heroku keys:add ~/.ssh/id_rsa.pub
  • Clone the sample app from my github account
$ git clone https://github.com/altfatterz/spring-boot-heroku.git
  • Build and verify that it starts up locally
$ mvn clean install
$ java -jar target/*.jar // will start on 8080, with --port=<PORT> you can customize
$ curl http://localhost:8080/greeting?name=Zoltan
$ Hello Zoltan
  • Configure the sample app as a heroku application and push it live
$ heroku create // automatically adds a git remote named “heroku”
$ git push heroku master
$ heroku logs // check if the application starts up successfully
In the root folder of the sample application there is file name Procfile with the following content

web: java $JAVA_OPTS -jar target/*.jar
This is needed to let Heroku know how to run the application. On Heroku we cannot tell explicitly on which port should the application run, this depends runtime based on the $PORT environment variable. Our sample application by default runs on 8080 port when starting it up with above command (in the Heroku specific Procfile). This can be easily changed with the server.port in the application.properties as seen below:

server.port: ${port:8080}
This way locally we can use the short command line arguments --port=9000 instead of --server.port=9000 and will also work on Heroku since Spring can bind to capitalized synonyms for Environment properties.
After you have finished stop your deployed application and logout from Heroku

$ heroku ps:scale web=0 //scale the web dynos down to zero which effectively takes all your app http-processes offline
$ heroku logout
A running version can be accessed here. Note that by default our application will use a single dyno (Heroku term for scaleable unit) and it will go to sleep after one hour of inactivity. This causes delay of a few seconds for the first request, subsequent requests will perform normally.

No comments: