본문 바로가기
웹프로그래밍/JSP

web.xml 정보

by 폴더맨 2024. 6. 8.

web.xml 정보

<%@ page language="java" contentType="text/html; charset=EUC-KR"%>
<%@ page import="java.util.Enumeration"%>
<HTML>
<BODY>
	<%
		Enumeration e = application.getInitParameterNames();
		while (e.hasMoreElements()) {
			String n = (String) e.nextElement();
			out.print(n + " = " + application.getInitParameter(n) + "<br>");
		}
	%>
</BODY>
</HTML>

'웹프로그래밍 > JSP' 카테고리의 다른 글

OUT 내장객체  (0) 2024.06.08
웹컨테이너 정보  (0) 2024.06.08
페이지이동  (0) 2024.06.08
요청헤드정보  (0) 2024.06.08
폼처리  (0) 2024.06.08