什么是jsp
是动态网页,可以嵌入java 代码 ,jsp 爷爷是servlet
基础语法
1 2 3 4 5 6 7 8 9 10 11 12 13
| <%-- page指令,可以配置session,errorPage,iserrorpage等等 --%> <%@ page contentType="text/html;charset=UTF-8" language="java" %> <%-- 包含指令:用于设置公共的部分(eg:页头、也脚) --%> <%@include file="/index.jsp"%> <%! void function() { } %> <% String aa = "xaa"; %> <%=aa%> <%-- 相当于out.print(aa); --%>
|
jsp九大隐式对象
- Reqeust
- Response
- Session
- Application
- Config
- Page
- Out
- Exception (jsp独有)
- pageContext (jsp独有)