Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Won't Fix
-
4.5.1
-
None
-
None
Description
Provided weblogic.xml work incorrectly with WebLogic. The main reason: providing of Guava classes by weblogic themself. Weblogic's version is conflicting with Solr. Recommend to update this class to:
<?xml version="1.0" encoding="UTF-8"?>
<wls:weblogic-web-app
xmlns:wls="http://xmlns.oracle.com/weblogic/weblogic-web-app"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/ejb-jar_3_0.xsd
http://xmlns.oracle.com/weblogic/weblogic-web-app
http://xmlns.oracle.com/weblogic/weblogic-web-app/1.4/weblogic-web-app.xsd">
<wls:weblogic-version>12.1.1</wls:weblogic-version>
<wls:context-root>solr</wls:context-root>
<wls:container-descriptor>
<wls:filter-dispatched-requests-enabled>false</wls:filter-dispatched-requests-enabled>
<wls:prefer-application-packages>
<wls:package-name>com.google.common</wls:package-name>
</wls:prefer-application-packages>
</wls:container-descriptor>
</wls:weblogic-web-app>