336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
request.getContextPath() 는 프로젝트의 패스(path)를 반환한다.
http://localhost:8080/TMS/board/list.jsp 의 경우, request.getContextPath() 를 수행하면 “/TMS” 를 반환한다.
* request.getRequestURI() 는 파일명까지 포함한 경로명을 반환한다.
http://localhost:8080/TMS/board/list.jsp 의 경우 “/TMS/board/list.jsp” 를 반환한다.
'프로그램 > Java' 카테고리의 다른 글
equals()메소드 사용시 NullPointerException 이 발생하는 경우 (0) | 2014.02.04 |
---|---|
String 클래스를 사용해야 하는 시점은? (0) | 2014.02.03 |
request.getRequestDispatcher(); (0) | 2014.02.01 |
response.sendRedirect() (0) | 2014.01.31 |
톰켓에서 OracleCallableStatement 캐스팅 사용시 ClassCastException 에러 해결 방법 (0) | 2014.01.30 |