HttpServletRequest의 getContextPath..
사용자가 요청한 URL에서 ContextPath만 알고 싶다면 HttpServletRequest의 getContextPath를 사용하면된다.
http://www.aaa.com:9999/bbb/ccc.jsp
사용자가 위의 URL을 입력했을때 getContextPath를 사용하면 bbb를 얻게 되고 getContextURI를 사용하게 되면 bbb/ccc.jsp를 얻게된다. getServerPort를 사용하면 9999를 얻을 수 있다.
'Java' 카테고리의 다른 글
Tomcat Method 제한.. (0) | 2016.05.16 |
---|---|
Get 방식으로 한글 파라미터 깨짐 문제.. (0) | 2014.11.24 |
Build path specifies execution environment J2SE-1.4...compatible with this environment. (0) | 2014.04.28 |
Java Try Catch Finally.. (0) | 2014.01.08 |
Java Object Copy(Clone).. (0) | 2013.12.12 |