-
Notifications
You must be signed in to change notification settings - Fork 41.7k
Closed
Labels
type: documentationA documentation updateA documentation update
Milestone
Description
Weblogic deployment works buy you have to jump though a couple of hoops. We should document that:
-
You need to extends
SpringBootServletInitializerAND implementWebApplicationInitializerdirectly -
You need to add a WEB-INF/weblogic.xml to favor bundled SLF4J:
<?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:container-descriptor>
<wls:prefer-application-packages>
<wls:package-name>org.slf4j</wls:package-name>
</wls:prefer-application-packages>
</wls:container-descriptor>
</wls:weblogic-web-app>vmdeep
Metadata
Metadata
Assignees
Labels
type: documentationA documentation updateA documentation update