我正在学习JSP。我无法找到如何在JSP中创建会话。
我所知道的是session是在_jspService方法下创建的隐式对象。所以我手动创建了会话。在下面的JSP代码中,我创建的会话与它在index_jsp中自动创建的相同但我得到的值为null。所以任何人都可以解释我为什么我会变空?
<%@ page import ="java.util.*" session="false" %>
<%
javax.servlet.http.HttpSession session = null;
session = pageContext.getSession();
%>
<html>
<body>
<%=session %>
</body>
答案 0 :(得分:1)
正如你所说:
session是在_jspService方法
下创建的隐式对象
JSP文件由Jasper Engine编译为java类。尽管您已经在JSP中编写了代码,但在创建的Java类中,还是有一些这些隐式对象的准备工作 因此,您不需要再次这样做。
你可以使用它们。您可以在JSP中编写代码:
From EL:<br>
sessionScope.name: ${sessionScope.name}<br>
<br>
From Scriptlet. <br>
<%=session.getAttribute("name")%>
你得到两次相同的输出:会话属性的值&#34; name&#34;。
在带有内容的JSP的示例中:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!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>Title</title>
</head>
<body>
From EL:<br>
sessionScope.name: ${sessionScope.name}<br>
<br>
From Scriptlet. <br>
<%=session.getAttribute("name")%>
</body>
</html>
将导致java类文件:
package org.apache.jsp;
import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.jsp.*;
public final class testcompile_jsp extends org.apache.jasper.runtime.HttpJspBase
implements org.apache.jasper.runtime.JspSourceDependent {
private static final JspFactory _jspxFactory = JspFactory.getDefaultFactory();
private static java.util.List<String> _jspx_dependants;
private org.glassfish.jsp.api.ResourceInjector _jspx_resourceInjector;
public java.util.List<String> getDependants() {
return _jspx_dependants;
}
public void _jspService(HttpServletRequest request, HttpServletResponse response)
throws java.io.IOException, ServletException {
PageContext pageContext = null;
HttpSession session = null;
ServletContext application = null;
ServletConfig config = null;
JspWriter out = null;
Object page = this;
JspWriter _jspx_out = null;
PageContext _jspx_page_context = null;
try {
response.setContentType("text/html; charset=UTF-8");
response.setHeader("X-Powered-By", "JSP/2.3");
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;
_jspx_resourceInjector = (org.glassfish.jsp.api.ResourceInjector) application.getAttribute("com.sun.appserv.jsp.resource.injector");
out.write("\r\n");
out.write("<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\r\n");
out.write("<html>\r\n");
out.write("<head>\r\n");
out.write("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n");
out.write("<title>Title</title>\r\n");
out.write("</head>\r\n");
out.write("<body>\r\n");
out.write("From EL:<br>\r\n");
out.write("sessionScope.name: ");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${sessionScope.name}", java.lang.String.class, (PageContext)_jspx_page_context, null));
out.write("<br>\r\n");
out.write("<br>\r\n");
out.write("From Scriptlet. <br>\r\n");
out.print(session.getAttribute("name"));
out.write("\r\n");
out.write("</body>\r\n");
out.write("</html>");
} catch (Throwable t) {
if (!(t instanceof SkipPageException)){
out = _jspx_out;
if (out != null && out.getBufferSize() != 0)
out.clearBuffer();
if (_jspx_page_context != null) _jspx_page_context.handlePageException(t);
else throw new ServletException(t);
}
} finally {
_jspxFactory.releasePageContext(_jspx_page_context);
}
}
}
正如您在_jspService
方法中看到的那样,有一些行:
HttpSession session = null;
...
session = pageContext.getSession();
基本上这是隐式会话对象。您的代码将在此之后关注并可以使用它。
编辑:
<%@ pagesession="false" %>
你说'#34;我不需要会话&#34;。因此会话不是pageContext中的绑定。因此,如果您致电pageContext.getSession()
,则会收到null
;
如果您需要,您必须使用:
request.getSession();
答案 1 :(得分:0)
可以解释一下为什么我的会话空白了吗?
如果将session属性设置为false,则会禁用JSP文件中的会话,即session="false"
,您可以查看here以获取更多详细信息。
当您从JSP调用我无法了解如何在JSP中创建会话。
httpsession
时,servlet容器将创建(&amp;维护) request.getSession(true);
对象(因为request
也是JSP中的隐式对象)。
public HttpSession getSession(boolean create):返回当前值 与此请求关联的HttpSession,如果没有当前请求 session和create为true,返回一个新会话。如果create为false 并且请求没有有效的HttpSession,此方法返回null。
您可以参考API here
因此,要从代码中创建session
,请将其更改为:
<%
javax.servlet.http.HttpSession session = request.getSession(true);
// you can session object from now add attributes,
// get attributes, remove attributes, etc..
%>
此外,一旦创建了会话(如上所示,使用request.getSession(true)
),您需要使用request.getSession()
来检索相同的会话对象。
换句话说,在整个申请中,
(1)使用LoginServlet
LoginController
或request.getSession(true)
班级的用户登录时间内仅创建会话一次
(2)然后在所有其他servlet / controller方法中使用request.getSession()
。
作为旁注,我强烈建议您使用Controller(如使用Spring)或Servlet类编写Java代码,因为JSP仅用于表示层(用于显示html内容) )。