Application Scope
- 각각의 프로젝트가 웹 어플리케이션을 의미하며, 이들이 모여 서버를 구성한다. application scope는 웹 어플리케이션이 시작되고 종료될 때까지 사용할 수 있다.
- ServletContext 인터페이스를 구현한 객체를 사용한다.
- jsp에서는 application 내장 객체를 이용한다.
- 서블릿의 경우는 getServletContext() 메소드를 이용하여 application 객체를 얻을 수 있다.
- 웹 어플리케이션 하나당 하나의 application 객체가 사용된다.
- 값을 저장할 때는 application 객체의 setattribute() 메소드를 사용한다.
- 값을 읽어들일 때는 application 객체의 getAttribute() 메소드를 사용한다.
- 모든 클라이언트가 공통으로 사용해야할 값들이 있을 때 사용한다.
사용
서블릿
import java.io.PrintWriter;
import javax.servlet.ServletContext;
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
response.setContentType("text/html; charset=UTF-8");
PrintWriter out = response.getWriter();
ServletContext application = getServletContext();
int value = 1;
application.setAttribute("value", value);
try {
int value = (int)application.getAttribute("value");
value++;
application.setAttribute("value", value);
out.println("<h1>value : " + value + "</h1>");
}catch(NullPointerException ex) {
out.println("value가 설정되지 않습니다.");
}
}
JSP
<%@ 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>
<%
try{
<%--JSP는 application 객체가 존재하므로 바로 메소드 사용 가능. --%>
int value = (int)application.getAttribute("value");
value = value + 2;
application.setAttribute("value", value);
%>
<h1><%=value %></h1>
<%
}catch(NullPointerException ex){
%>
<h1>설정된 값이 없습니다.</h1>
<%
}
%>
</body>
</html>