jsp / JAVA / Application / getRealPath / 어플리케이션 경로

2016. 1. 5. 14:32language/jsp


웹 어플리케이션의 경로를 구하는 예제이다.

 

 

getRealPath("/"); 는 webapp폴더까지를 의미한다.

 

JAVA 에서

request.getRealPath("/"); deprecated되었다.

 

이유는

ServletContext에서도 있는걸 중복으로 가지고 있어서 그렇다고 한다.

 

 

 

 

 

해결 방안

request.getSession().getServletContext().getRealPath("/");