javaweb04_JSP(Java Server Pages)
JSP入门:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8" import="java.util.*"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello</title>
</head>
<body>
<p>Hello,BLU!<p>
<%!
public void test(){
System.out.println("test方法");
}
%>
<br>
<% int a=1,b=2; %>
<% System.out.println(a+b); %>
<% test(); %>
<%= a+b %>
<br>
<%= new Date().toLocaleString() %>
<br>
<% out.print("Hi, BLU!"); %>
</body>
</html>
JSP的page指令:
<%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" import="java.util.*"%>
contentType="text/html; charset=UTF-8"
对应:
response.setContentType("text/html; charset=UTF-8");
页面元素:
<%! %> 中的内容会翻译在生成的Servlet类中
<% %> 中的内容会翻译在Servlet的Service方法中
<%= %> 和 <%out.println()%> 效果相同
直接写在中的值会翻译到Servlet的Service方法中的 out.write("") 中,作为输出内容。
include包含其他页面的两种方式:
<%@include file=“footer.jsp” %>
<jsp:include page=“footer.jsp” />
注:<%@include 会导致两个jsp合并成为同一个java文件,而<jsp:include仍然是两个文件,所以存在传参问题
传参方法:
<jsp:include page="footer.jsp">
<jsp:param name="year" value="2017" />
</jsp:include>
<%=request.getParameter("year")%>
JSP的9大内置对象(不需要显示定义,直接就可以使用的对象):
- PageContext 代表当前页面作用域
- Request 请求
- Response 响应
- Session 会话
- Application 即【ServletContext】
- config 即【ServletConfig】
- out 输出内容
- page 代表当前Servlet实例,相当于this
- exception 异常
exception 的使用:
- try.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8" errorPage="catch.jsp"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<%
int[] a = new int[10];
a[20] = 5;
%>
</body>
</html>
- catch.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8" errorPage="catch.jsp" isErrorPage="true"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<%=exception%>
</body>
</html>
JSP有4个作用域:
pageContext 当前页面有效
requestContext 一次请求有效
sessionContext 当前会话有效
applicationContext 全局有效,所有用户共享
<%
pageContext.setAttribute("name1", "BLU1");
request.setAttribute("name2", "BLU2");
session.setAttribute("name3", "BLU3");
application.setAttribute("name4", "BLU4");
%>
<%
String name1 = (String) pageContext.getAttribute("name1");
String name2 = (String) pageContext.findAttribute("name2");
String name3 = (String) pageContext.findAttribute("name3");
String name4 = (String) pageContext.findAttribute("name4");
%>
<br>
<%=name1 %>
<%=name2 %>
<%=name3 %>
<%=name4 %>
getAttribute和findAttribute的区别:
findAttribute是pageContext的方法,它会依次在page,request,session(如果有效的话)和application内查找
而getAttribute只会在当前scope(page)中查找
JSTL JSP Standard Tag Library 标准标签库
- 使用JSTL需要以下两个包:
<dependency>
<groupId>javax.servlet.jsp.jstl</groupId>
<artifactId>jstl-api</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>taglibs</groupId>
<artifactId>standard</artifactId>
<version>1.1.2</version>
</dependency>
- 使用JSTL:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello</title>
</head>
<body>
<c:set var="name" value="${ 'BLU'}" scope="request"/>
<c:out value="${name}"/><br>
<c:remove var="name" scope="request"/><br>
<c:out value="${name}"/><br>
</body>
</html>
首先需要通过指令声明使用jstl的标签前缀:
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<c:set var="name" value="${'BLU'}" scope="request"/>
相当于:
<%request.setAttribute("name","BLU")%>
<c:out value="${name}"/><br>
相当于:
<%=request.getAttribute("name")%>
<c:remove var="name" scope="request"/><br>
相当于:
<%request.removeAttribute("name")%>
<body>
<c:set var="money" value="900" scope="request" />
<c:if test="${money<500}"><p>poverty</p></c:if>
<c:if test="${!(money<500)}"><p>rich</p></c:if>
<% pageContext.setAttribute("weapon", null); %>
<c:if test="${empty weapon}"><p>没有装备武器</p></c:if>
</body>
<body>
<%
List<String> names = new ArrayList<String>();
names.add("zhangsan");
names.add("lisi");
names.add("wangwu");
names.add("BLU");
names.add("joker");
request.setAttribute("names",names);
%>
<c:forEach items="${names}" var="name" varStatus="st">
<tr>
<td><c:out value="${st.count}" /></td>
<td><c:out value="${name}" /></td>
</tr>
</c:forEach>
</body>
items="${names}" 指定要遍历的集合
var="name" 指定遍历出来的元素名
varStatus="st" 表示遍历的状态
EL表达式
- 使用EL表达式:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8" isELIgnored="false"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello</title>
</head>
<body>
<c:set var="name" value="BLU" scope="request" />
通过标签获取name: <c:out value="${name}" /> <br>
通过 EL 获取name: ${name}
</body>
</html>
使用EL表达式需要在<%@page 标签里加上isELIgnored="false"
通过EL取值:
${name}
EL表达式可以从pageContext,request,session,application四个作用域中按照从高到低的优先级顺序获取取到值
pageContext>request>session>application