Bla...
Bla...

Reputation: 7288

Deploy Play! 2.2.x on java based shared hosting

Currently, I'm planning to deploy my Play! 2.2.x app on a shared hosting service. Since it's cheaper than to deploy it on cloud like heroku.

I don't have any experience on deploying my app on java shared hosting, like tomcat and jetty. However, I do know that for tomcat and jetty, I need to convert my app into war file. Also, I know that Play! 2.2.x doesn't support war file deployment.

So, does that mean I couldn't deploy my app on shared hosting, like http://www.jvmhost.com/? Or even if I could, would the tomcat or jetty be useless?

Upvotes: 0

Views: 78

Answers (1)

artbristol
artbristol

Reputation: 32407

You can use the Play2War plugin for Play 2.2.x

https://github.com/play2war/play2-war-plugin/

Current versions:
    Play 2.2.x          : 1.2
    Play 2.3.0 -> 2.3.1 : 1.3-beta1 (Scala 2.10 & 2.11)
    Play 2.3.2+         : 1.3-beta3 (Scala 2.10 & 2.11)

Upvotes: 1

Related Questions