[WebLogic] 웹로직 어플리케이션 getRealPath() return값이 NULL
현상
웹로직 WAR 아카이브로 배포 시, RealPath를 찾지 못해 NullPointerException가 발생할 수 있다.
해결 방안
아래 2가지 방법 중 하나로 적용하면 된다.
weblogic.xml 파일 수정
1 2 3 4 5
<weblogic-web-app> <container-descriptor> <show-archived-real-path-enabled>true</show-archived-real-path-enabled> </container-descriptor> </weblogic-web-app>
웹로직 콘솔 수정
[웹로직 콘솔] > [도메인] > [구성] > [웹 어플리케이션]
아카이브된 실제 경로 사용 체크
References
This post is licensed under CC BY 4.0 by the author.
Comments powered by Disqus.