orion-application.xml to weblogic-application.xml
I'm migrating some Java Applications from OC4J to Weblogic 12c.The applications are packaged as an Enterprise Archive (.ear) and contains Java Web Applications (JSP / Servlets and pure JDBC).
The company controls the deployment of the jars with the orion-application deployment descriptor. They use a folder in the file system to keep the libraries, so they use the orion-application.xml to refer to the libraries in that folder.
Example:
<oriion-application>
...
<library path="/usr/appl/lib/sgp.jar"/>
...
</orion-application>
I already migrated some of their Java applications using the APP-INF/lib of the Enterprise Archive to keep the jars. For some jars I'm thinking in use shared libraries.
The company controls the deployment of the jars with the orion-application deployment descriptor. They use a folder in the file system to keep the libraries, so they use the orion-application.xml to refer to the libraries in that folder.
Example:
<oriion-application>
...
<library path="/usr/appl/lib/sgp.jar"/>
...
</orion-application>
I already migrated some of their Java applications using the APP-INF/lib of the Enterprise Archive to keep the jars. For some jars I'm thinking in use shared libraries.
0