weblogic12c - Weblogic libraries it is shipped with -


given have weblogic server version: 12.1.3.0.0

how can find libraries, jars ships with?

i'd figure out specify in weblogic.xml in <prefer-application-packages>, e.g.:

<container-descriptor>     <prefer-web-inf-classes>false</prefer-web-inf-classes>     <prefer-application-packages>         <package-name>org.slf4j.*</package-name>     </prefer-application-packages> </container-descriptor> 

please use following app classloader filtering. shipped weblogic server , available adminserver.

http://yourhost:yourport/wls-cat

example: http://localhost:7001/wls-cat/


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -