JSP/getServletInfo()

<%@ page info="This is JSP info" %>

Soul-Learner 2008. 1. 6. 10:09
<%@ page language="java" contentType="text/html; charset=EUC-KR"%>
<%@ page info="This is JSP info" %>
<html>
<body>
<%
 out.println(this.getServletInfo()); // 'This is JSP info' 출력됨
%>
</body>
</html>