Wu Yuxiong - natural born JAVA Development JSP-Servlet study notes: Specifies the JSP page description information

<%@ page contentType="text/html; charset=GBK" language="java"
    errorPage=""%>
<!-- 指定info 信息 -->
<%@ page info="this is a jsp"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<info page directive property tests>title</title>
</head>
<body>
    <!-- 输出info信息 -->
    <%=getServletInfo() %>
</body>
</html>

 

Guess you like

Origin www.cnblogs.com/tszr/p/12663925.html