pagecontext.jsp
来自「java的一系列产品中包括jsme,jmse,j2ee,本文件提供j2ee实现的」· JSP 代码 · 共 11 行
JSP
11 行
<html>
<head><title>pageContext</title></head>
<body>
<% request.setAttribute("MyName","LiMing1"); %>
<% session.putValue("MyName","LiMing2"); %>
<%application.setAttribute("MyName","LiMing3");%>
request:<%=pageContext.getRequest().getAttribute("MyName")%>
<br>session:<%=pageContext.getSession().getValue("MyName")%>
<br>application:<%=pageContext.getServletContext().getAttribute("YourName")%>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?