Deploying a Play 2.1 app with Tomcat

I have a play app that I converted to a .war file with play2war and now you need to deploy it to tomcat.

What files do I need to move to my webapps directory in tomcat and do I need to unzip the war file?

Using Tomcat 7, FYI.

+3


source to share


1 answer


Questions have already been addressed in the comments.

With "play war" you can create a war file. Copy this file to webapps folder and tomcat will unpack it.



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

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

+2


source







All Articles