gpt4 book ai didi

java - 由 servlet 设置的属性存储在哪里?

转载 作者:行者123 更新时间:2023-11-29 03:08:51 25 4
gpt4 key购买 nike

下面是我的 servlet:

public class ServletExample extends HttpServlet {
private static final long serialVersionUID = 1L;

protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

if(request.getParameter("firstname") == null || request.getParameter("lastname") == null){
this.getServletContext().getRequestDispatcher("/index.jsp").forward(request, response);
return;
}

String firstName = request.getParameter("firstname");
String lastName = request.getParameter("lastname");

request.setAttribute("firstname", firstName);
request.setAttribute("lastname", lastName);

this.getServletContext().getRequestDispatcher("/output.jsp").forward(request, response);
}

}

下面是我的index.jsp:

<?xml version="1.0" encoding="ISO-8859-1" ?>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>Insert title here</title>
</head>
<body>
<form action="servletexample" method="post" >
<table border="0">
<tr>
<td>First Name:</td> <td><input type="text" name="firstname" /></td>
</tr>
<tr>
<td>Last Name:</td> <td><input type="text" name="lastname" /></td>
</tr>
<tr>
<td colspan="2"> <input type="submit" value="Submit" /></td>
</tr>
</table>
</form>
</body>
</html>

下面是我的output.jsp:

<?xml version="1.0" encoding="ISO-8859-1" ?>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>Insert title here</title>
</head>
<body>
<h1>Your first and last name is: </h1>
<%
/*String firstName = (String)request.getAttribute("firstname");
String lastName = (String)request.getAttribute("lastname");*/
String firstName = request.getParameter("firstname");
String lastName = request.getParameter("lastname");

out.print(firstName + " " + lastName);
%>

</body>
</html>

我了解到,当加载 web 应用程序时,servletcontainer 将创建一次 ServletContext 并保存在服务器的内存中。 ServletContext 是应用于整个 Web 应用程序的属性和配置的集合

根据上面的 servletexample,request.setattribute 用于创建新属性。

1)

这些属性是否存储在 ServletContext 中?

2)

存储在 ServletContext 中的那些属性和配置是什么?

最佳答案

作用域分为三种:

  1. 应用范围(即 SevletContext)
  2. session 范围(即 HttpSession)
  3. 请求范围(即 HttpServletRequest)

获取 ServletContext 对象:

  1. getServletContext().set attribute("name","value");//现在的名字属性可以从应用程序中的任何 Servlet 访问。

    获取HttpSession对象:

  2. request.getSession(true).set attribute("name2","value");//现在可以从当前 session 访问 name2 属性

  3. request.set attribute("name3","value");

    //现在,在将响应发送回客户端之前,可以在 Servlet 或 jsp 中的任何位置访问 name3 属性。

问题:属性存储在哪里?

Ans:属性存储在各自作用域的Map(名称-值对)中。 即 session 映射、请求映射和 ServletContext 映射。

关于java - 由 servlet 设置的属性存储在哪里?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30566941/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com