I'm building an enterprise application and I wanted to know if there is some standard way of packaging an application into an EAR. As the application server I'm using Wildfly 10.
I found multiple questions for this, but these are not state of the art (2007, 2009 etc.).
Currently I have the following components:
- war for the static content
- several JARs including
- a jar for the pages and servlets
- multiple seperate jars for the EJBs
- external libraries which are used by the JARs
Now I want to put everything together in an EAR and I wanted to know if there is any state of the art way to do so.
I read about an APP-INF dir here, but I couldn't find anything about this in the wildfly documentation.