본문 바로가기

Study/Programming

JSP 서버이름, 클라이언트ip

반응형

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>

클라이언트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>
</body>
</html>


반응형

'Study > Programming' 카테고리의 다른 글

JSP get/post 값 넘겨주기  (0) 2009.05.28
JSP submit get/post전송  (0) 2009.05.28
jsp 달력, 구구단  (0) 2009.05.27
JSP DB연동  (0) 2009.05.27
JSP 날짜 구하기  (0) 2009.05.27