Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Deploying .ear file to tomcat

I have an .ear file which contains multiple war files.

I am moving the app to tomcat. Once I have packaged all of the individual war files contained in the .ear for tomcat compatability how will the war files be deployed ?

Do I just need to deploy all of the individual war files to tomcat and it should "just work" or is it not as simple as this ?

To be more specific what is the tomcat equivalent "glue" that websphere provides to package all the wars in one ear?

like image 524
blue-sky Avatar asked Feb 11 '12 21:02

blue-sky


1 Answers

Tomcat doesn't support the full EE stack, it's a servlet container only. You'll have to deploy the WARs separately.

like image 131
Peter Svensson Avatar answered Sep 27 '22 19:09

Peter Svensson