본문 바로가기

JSP, Servlet/JSP, Servlet 기초

[JSP/Servlet] application영역 이용하기

메소드 : 설명
setAttribute(name, value) : name 속성에 value 값을 설정한다.
getAttribute(name) : 매개 변수로 지정한 name에 설정된 값을 알아낸다.
getAttributeNames() : 현재 객체에 관련된 모든 속성의 이름을 가져온다.
removeAttribute(name) : 매개 변수로 지정한 name에 설정된 값을 제거한다.

 

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>application 내장 객체 예제</title>
</head>
<body>
	<%
	String contextPath = application.getContextPath();
	String filePath = application.getRealPath("05_application.jsp");
	String serverInfo = application.getServerInfo();
	%>
	애플리케이션의 context path :
	<br>
	<b><%=contextPath%></b><br>
	웹 애플리케이션의 파일 경로명 : <br>
	<b><%=filePath %></b><br>
	컨테이너의 이름 : <br>
	<b><%=serverInfo %></b>
</body>
</html>

 

 

728x90
반응형