## web.xml name, age, loc로 데이터를 할당하고 화면에서 출력
<h3>logEnagled: <%=application.getInitParameter("logEnagled") %></h3>
<h3>debugLevel: <%=application.getInitParameter("debugLevel") %></h3>
<h3>한번에 설정값 가져오기</h3>
<%
Enumeration<String> initParams = application.getInitParameterNames();
while(initParams.hasMoreElements()){
String name=initParams.nextElement();
out.print("<h4>"+name+":"+application.getInitParameter(name)+"</h4>");
}
application.log("@@@@ 서버 단위 로그 ####");
log("@@@@@@@@@@@@@@@@ jsp 기본 로그 @@@@@@@@@@@@@");
%>