Great document:
http://docs.oracle.com/cd/E23943_01/web.1111/e13702.pdf
Deployment Tools for Developers section explains the 5 ways for deployment of projects to the server automatically .
Showing posts with label Weblogic. Show all posts
Showing posts with label Weblogic. Show all posts
Wednesday, October 1, 2014
Friday, December 6, 2013
Weblogic war files and libraries
If your web application requires some 3rd party libraries for the platform Weblogic, there are common used 2 different ways for running your application with including this archive files.
First one is adding this libraries to the classpath of Weblogic Server.
Second one is making definition in the weblogic.xml file of your project.
For instance:
<container-descriptor>
<prefer-web-inf-classes>true</prefer-web-inf-classes>
</container-descriptor>
And for more information:
http://docs.oracle.com/cd/E24329_01/web.1211/e21049/weblogic_xml.htm
If you've to use 3rd party jars with different versions, i think second way is better.
First one is adding this libraries to the classpath of Weblogic Server.
Second one is making definition in the weblogic.xml file of your project.
For instance:
<container-descriptor>
<prefer-web-inf-classes>true</prefer-web-inf-classes>
</container-descriptor>
And for more information:
http://docs.oracle.com/cd/E24329_01/web.1211/e21049/weblogic_xml.htm
If you've to use 3rd party jars with different versions, i think second way is better.