Where is WebLogic Jar containing javax.servlet in 10.3?

左心房为你撑大大i 提交于 2019-12-05 21:58:38

问题


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?


回答1:


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.




回答2:


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




回答3:


I don't do weblogic, so I can't point the exact location, but I can at least hint that JAR files are basically ZIP files which adhere a special folder structure and have a different extension. Knowing that fact, you should be able to use any ZIP tool to your taste to open/extract them and take a look in the folder/file structure yourself. To ease the job, you can also grab WinRAR which has a Search function with which you can search for folders and files in JAR files.



来源:https://stackoverflow.com/questions/1848911/where-is-weblogic-jar-containing-javax-servlet-in-10-3

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!