1. 리소스패스 /* 수정
<!DOCTYPE weblogic-web-app PUBLIC "-//BEA Systems, Inc.//DTD Web Application 6.1//EN" "http://www.bea.com/servers/wls610/dtd/weblogic-web-jar.dtd">
<weblogic-web-app>
<session-descriptor>
<session-param>
<param-name>CookieName</param-name>
<param-value>JSESSIONIDMDC</param-value>
</session-param>
</session-descriptor>
<jsp-descriptor>
<jsp-param>
<param-name>compileCommand</param-name>
<param-value>javac</param-value>
</jsp-param>
<jsp-param>
<param-name>encoding</param-name>
<param-value>euc-kr</param-value>
</jsp-param>
</jsp-descriptor>
<charset-params>
<input-charset>
<resource-path>/*</resource-path>
<java-charset-name>euc-kr</java-charset-name>
</input-charset>
</charset-params>
<context-root>/</context-root>
< /weblogic-web-app>
2. weblogic Context Path잡기
참고 : http://khstar.tistory.com/18
웹로직에서 Context를 잡는것은 weblogic.xml에서
<wls:context-root>web</wls:context-root>
라인만 수정해 주면 된다.
그러나 일반적으로 Context Root를 변경하는 경우는 루트 경로를 잡기 위해서다.
위와 같이 <wls:context-root>web</wls:context-root>잡혀 있는 경우 Client에서
접근 하기위해 http://localhsot/web/index.jsp 와 같은 방법으로 접근을 하게 된다.
그러나 중간 어플리케이션 이름을 추가 하지 않고 (ex: http://localhost/index.jsp) 접근 하기 위해서는
위와 같이 써주면 된다.
그러나 이를 디플로이 할시에 error가 발생할 경우 config.xml을 살펴 보기 바란다.
(ERR_MSG: Context path '/' is already in use by the module ) 참고 : http://www.okjsp.pe.kr/seq/160084
위 처럼 <diagnostic-context-enabled>가 false일 것이다.
기본 적으로 false 값을 가지며 true로 변경시에 Context Root를 /로 설정 할수 있다.
3. 버철 호스트
참고 : http://rajalo.tistory.com/76
4. Context path '/' is already in use by the module
해당 모듈의 weblogic.xml의 context-root 설정이 중복되었는지 확인해서, 중복되지 않게 context-root 설정후 was 재기동