Where is the WebLogic Jar containing javax.servlet in 10.3?

I am trying to configure my path to enable javax.servlet using WebLogic. WebLogic unzipped the Jar files, and which one contains javax.servlet?

+6
java servlets weblogic
source share
3 answers

Starting with WebLogic 10, BEA has implemented the implementation of the API specifications from weblogic.jar into various โ€œmodulesโ€. Now they bind the new api.jar in {BEA_HOME}/wlsever_10.3/server/lib/ , which contains only a MANIFEST.MF , which points to {BEA_HOME}/modules/*.jar .

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

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

+20
source share

I found them. For those who need an answer, they are here:
$ BEA_HOME / modules / javax.servlet_1.0.0.0_2-5.jar

+2
source share

I do not do weblogic, so I canโ€™t specify the exact location, but I can at least hint that JAR files are basically ZIP files that adhere to a special folder structure and have a different extension. Knowing this fact, you should be able to use any ZIP tool at your discretion in order to open / extract them and view the folder / file structure yourself. To make things easier, you can also capture WinRAR , which has a search function with which you can search for folders and files in JAR files.

+1
source share

All Articles