<%@page import="com.ankangqiao.test.User"%>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>测试EL表达式</title>
</head>
<body>
<%
User user = new User("Kevin", 12, "男", 1.56f, "广州市");
session.setAttribute("kevin", user);
%>
${sessionScope.kevin["name"] }
<%--
与范围有关的EL 隐含对象包含以下四个:pageScope、requestScope、sessionScope 和applicationScope;
--%>
</body>
</html>
4.EL入门:pageScope、requestScope、sessionScope 和applicationScope
最新推荐文章于 2023-06-08 00:26:45 发布