JSP
什么是JSP
Java Server Pages:Java服务器端页面,用于动态Web技术
最大的特点:
- 写JSP就像在写HTML
- 区别:
- HTML只给用户提供静态的数据
- JSP页面中可以嵌入JAVA代码,为用户提供动态数据.
JSP原理
- 代码层面没有任何问题
- 服务器内部工作
- tomcat中有个一work目录;
- IDEA中使用Tomcat的会在IDEA的tomcat中产生一个work目录
我电脑的地址
C:\Users\用户名\.IntelliJIdea2019.2\system\tomcat\Unnamed_javaweb-session-cookie\work\Catalina\localhost\javaweb_session_cookie_war\org\apache\jsp
发现页面转变成了Java程序
浏览器向服务器发送请求,不管访问什么资源,其实都是在访问Servlet!
JSP最终也会被转换成为一个Java类
JSP本质上就是一个Servlet.
// 初始化
public void _jspInit(){
}
// 销毁
public void _jspDestroy(){
}
// JSPService
public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response)
- 判断请求
- 内置一些对象
final javax.servlet.jsp.PageContext pageContext;// 页面上下文 javax.servlet.http.HttpSession session = null;// session final javax.servlet.ServletContext application;// applicationContext final javax.servlet.ServletConfig config; // config javax.servlet.jsp.JspWriter out = null; // out final java.lang.Object page = this;// page:当前 HttpServletRequset request;//请求 HttpServletResponse response;// 响应
- 输出页面前增加的代码
response.setContentType("text/html"); pageContext = _jspxFactory.getPageContext(this, request, response, null, true, 8192, true); _jspx_page_context = pageContext; application = pageContext.getServletContext(); config = pageContext.getServletConfig(); session = pageContext.getSession(); out = pageContext.getOut(); _jspx_out = out;
- 以上这些对象我们可以在JSP页面中直接使用.
在JSP页面中:
只要是Java代码就会原封不动的输出
如果是HTML代码,就会被转换成:
out.write("<html>\r\n");
上面这样的格式,输出到前端
JSP基础语法
任何语言都有自己的语法,Java中有,JSP作为Java技术的一种应用,它拥有自己扩充的语法(了解即可),Java所有的语法都支持
JSP表达式
<%-- JSP表达式
作用:用来讲程序的输出,输出到客户端
<%=变量或者表达式%>
--%>
<%=new java.util.Date()%>
脚本片段的再实现
<p>这是一个JSP文档</p>
<%
int x =10;
out.println(x);
%>
<%
int y = 2;
out.println(y);
%>
<hr>
<%
for (int i = 0; i < 5; i++) {
%>
<h1>Hello <%=i%></h1>
<%
}
%>
耦合度过高!建议不使用
JSP声明
<%!
static {
System.out.println("Loading Servlet!");
}
private int globalValue = 0;
public void foo(){
System.out.println("进入了方法foo");
}
%>
JSP声明:会被编译到JSP生成Java的类中!其他的就会被生成到 _jspService方法中!
在JSP中嵌入Java代码即可。
<%%>
<%=%>
<%!%>
<%--JSP注释--%>
<!--Html注释-->
JSP的注释,会不在客户端显示,HTML的注释会.
JSP指令
找不到图片的时候用
${pageContext.request.contextPath}/img/500.jpg
<%@ page args......%>
<%--@include会将两个页面合二为一,java代码会互相影响--%>
<%@include file="/common/header.jsp"%>
<h1>网页主体</h1>
<%@include file="common/footer.jsp"%>
<hr>
<%--JSP标签
jsp:include;拼接页面,本质还是三个
代码不会互相影响
比如我在header页面中定义的了一个变量x,
在footer中再定义一个变量x不会冲突,
而用上面的方法就会
--%>
<jsp:include page="common/header.jsp"/>
<h1>网页副体</h1>
<jsp:include page="common/footer.jsp"/>
9大内置对象
- PageContext 可以存东西
- Request 可以存东西
- Response
- Session 可以存东西
- Application 【ServletContext】 可以存东西
- config 【ServletConfig】
- out
- page 几乎不同
- exception
<%
pageContext.setAttribute("name1", "1"); // 保存的数据只在一个页面中有效
request.setAttribute("name2", "2"); // 保存的数据只在一次请求中有效
session.setAttribute("name3", "3"); // 保存的数据只在一次会话中有效,从打开浏览器到关闭浏览器
application.setAttribute("name4", "4"); // 保存的数据只在服务器中有效,从打开服务器到关闭服务器
%>
<%
String name1 = (String) pageContext.findAttribute("name1");
String name2 = (String) pageContext.findAttribute("name2");
String name3 = (String) pageContext.findAttribute("name3");
String name4 = (String) pageContext.findAttribute("name4");
String name5 = (String) pageContext.findAttribute("name5"); // 不存在
%>
<%--用EL表达式输出 ${}--%>
<h1>取出的值为</h1>
<h3>${name1}</h3>
<h3>${name2}</h3>
<h3>${name3}</h3>
<h3>${name4}</h3>
<h3>${name5}</h3>
<%--区别--%>
<%--不存在会显示null,用EL表达式不会--%>
<h3><%=name5%></h3>
访问了这个页面后,再去别的页面获取只能获得到
3
4
null
request:客户端向服务器发送消息,产生的数据,用户看完就没用了
session:客户端向服务器发送请求,产生的数据,用户用完一会还有用,比如:购物车
application:客户端向服务器发送请求,产生的数据,一个用户用完了,其他用户还可能使用,比如:聊天数据。
四大作用域,九大内置对象
JSP标签、JSTL标签、EL表达式
EL表达式:
- 获取数据
- 执行运算
- 获取web开发的常用对象
要导入的包
<!-- https://mvnrepository.com/artifact/javax.servlet.jsp.jstl/jstl -->
<dependency>
<groupId>javax.servlet.jsp.jstl</groupId>
<artifactId>jstl-api</artifactId>
<version>1.2</version>
</dependency>
<!-- https://mvnrepository.com/artifact/taglibs/standard -->
<dependency>
<groupId>taglibs</groupId>
<artifactId>standard</artifactId>
<version>1.1.2</version>
</dependency>
<jsp:forword page="/jsp2.jsp">
<jsp:param name="name" value="中文"></jsp:param>
<jsp:param name="age" value="5000"></jsp:param>
</jsp:forword>
转发带参数
<%=request.getParameter("name")%>
<%=request.getParameter("age")%>
获取参数
用的少
JSTL表达式
JSTL标签库的使用就是为了弥补HTML标签的不足;他自定义许多标签,可以供我们使用,标签的功能和Java代码一样
核心标签
<!-- 引用核心标签库的语法 -->
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
格式化标签
JSTL标签库使用步骤
- 引用对应的taglib
- 使用其中的方法
- 在Tomcat中也需要导入jstl-api,standard的包,或者maven用jstl而不用jstl-api, 否则会报错:JSTL 解析错误
<body>
<h4>if测试</h4>
<hr>
<form action="coreif.jsp" method="get">
<input type="text" name="username" value="${param.username}">
<input type="submit" value="登录">
</form>
<c:if test="${param.username == 'admin'}" var="isAdmin">
<c:out value="管理员欢迎您!"/>
</c:if>
<c:out value="${isAdmin}"/>
</body>
<body>
<c:set var="score" value="85"/>
<c:choose>
<c:when test="${score>=90}">
你的成绩为优秀
</c:when>
<c:when test="${score>=80}">
你的成绩为良好
</c:when>
<c:when test="${score>=70}">
你的成绩为一般
</c:when>
<c:when test="${score>=60}">
你的成绩为合格
</c:when>
</c:choose>
<body>
<%
ArrayList<String> person = new ArrayList<>();
person.add(0,"张三");
person.add(1,"张三");
person.add(2,"张2");
person.add(3,"张3");
person.add(4,"张4");
person.add(5,"张5");
person.add(6,"张6");
person.add(7,"张7");
person.add(8,"张8");
request.setAttribute("list", person);
%>
<%--
var: 每一次遍历出来的变量
items: 要遍历的对象
begin: 从哪里开始
end: 到哪里结束
step: 步长
--%>
<c:forEach var="people" items="${list}">
<c:out value="${people}"/> <br>
</c:forEach>
<hr>
<c:forEach begin="1" end="3" step="2" items="${list}" var="people">
<c:out value="${people}"/>
</c:forEach>
</body>