WEB-INF/weblogic.xml을 추가한다. 웹로직 플러그인 설치시 웹모듈 디스크립터 생성해서 쉽게 네임스페이스를 만들어 준다.

<?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/web-app_2_5.xsd 
http://xmlns.oracle.com/weblogic/weblogic-web-app
http://xmlns.oracle.com/weblogic/weblogic-web-app/1.2/weblogic-web-app.xsd">

<wls:context-root>/</wls:context-root>

</wls:weblogic-web-app>


자세한 설명은 링크를 참조하자.

AND