본문 바로가기
Study/jsp

request 객체 설명

by 아방 2007. 9. 7.

http uri는

http:// [host]:[port][/requestPath]?[get방식의 경우queryString] 체계를 이루며

그중[requestPath]는 다시 contextPath, ServetPath, PathInfo로 구성됩니다.

질문자가 질의한 getContextPath() method는  [request path] 그중에서도 contextPath 문자열을 획득할수있게 합니다.


예를 들어 request URI를

http:// localhost:8080/Workspace1-project1-context-root/servelt/info 라 하였다 가정하면

getContextPath() method는 "/Workspace1-project1-context-root"라는 문자열을 return합니다.



클라이언트 IP = <%=request.getRemoteAddr()%><br>

요청정보길이 = <%=request.getContentLength()%><br>

요청정보 인코딩 = <%=request.getCharacterEncoding()%><br>

요청정보 컨텐트타입 = <%=request.getContentType%><br>

요청정보 프로토콜 = <%=request.getProtocol()%><br>

요청정보 전송 방식 = <%=request.getMethod()%><br>

요청URI = <%=request.getRequestURI()%><br>

컨텍스트 경로 = <%=request.getContextPath()%><br>

서버이름 = <%=request.getServerName()%><br>

서버포트 = <%=request.getServerPort()%><br>

댓글