Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is WebLogic Jar containing javax.servlet in 10.3?

I am trying to configure my path to include javax.servlet with WebLogic. WebLogic has split out the Jar files, so which one contains javax.servlet?

like image 548
bkoch Avatar asked Dec 04 '09 18:12

bkoch


1 Answers

Starting with WebLogic 10, BEA externalized the implementation of API specs from weblogic.jar into various "modules". They now bundle a new api.jar in {BEA_HOME}/wlsever_10.3/server/lib/ that contains just a MANIFEST.MF which points to {BEA_HOME}/modules/*.jar.

These modules include all API specifications as well as features provided BEA/ORACLE.

So, for Servlet API 2.5, indeed include {BEA_HOME}/modules/javax.servlet_1.0.0.0_2-5.jar.

like image 51
Pascal Thivent Avatar answered Sep 22 '22 11:09

Pascal Thivent