Deployment of EAR in TomEE

1

Beginning to explore TomEE, the following question arises: to install an EAR according to what the documentation says, you must upload the EAR to the "apps" folder and say that you have to modify the tomee.xml so that the folder of deploy be "apps". But what is the location of this folder? I do not see it anywhere. Does someone guide me? Thanks!

    
asked by ElFachis 24.04.2018 в 15:37
source

1 answer

0

From the official documentation :

  

/webapps Works the same way as it does for Tomcat. Drop your   directories / wars in here! Removed examples (Just because most of   people does not care)

     

/apps (does not exist by default) Can receive WARs of course, but   also JAR and EAR files. Optionally add your resources.xml file here.

The /webapps directory works the same as the Tomcat directory, you can put a war file there and it will be displayed.

The /apps directory does not exist by default, but you can create it at the same height as the /webapps directory. It will support war , ear , jar and you can even put your resources.xml here.

    
answered by 24.04.2018 / 15:58
source