如何将对象从 servlet 传递到调用 JSP。
我有一个调用 servlet 的 JSP。在这个 servlet 中,我正在设置 viewBean 的属性。现在,我想从 JSP 页面上的 Servlet 中获取这个属性值集。
如何从 Servlet 使这个 ViewBean 对象在 JSP 上可用。
将对象放在会话中或请求中的 servlet 中,例如:
String shared = "shared";
request.setAttribute("sharedId", shared); // add to request
request.getSession().setAttribute("sharedId", shared); // add to session
this.getServletConfig().getServletContext().setAttribute("sharedId", shared); // add to application context
您可以在 jsp 中阅读它,例如:
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<body>
<cut value= "${shared}"/>
<cut value= "${requestScope.shared}"/>
<cut value= "${requestScope.request.shared}"/>
${shared}
或者使用带有代码的 scriptlet 阅读它:
<%
String shared = (String)request.getAttribute("sharedId");
String shared1 = (String)request.getSession().getAttribute("sharedId");
String shared2 = (String)this.getServletConfig().getServletContext().getAttribute("sharedId");
%>
好吧,首先您需要设置该值,以便您可以从您的页面访问它,例如:
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class MyServlet extends HttpServlet {
public void doGet(HttpServletRequest request, HttpServletResponse response) {
// Do some work.
Person value = new Person("Matthew", "Abbott";
request.setAttribute("person", person);
// Forward to to the JSP file.
request.getRequestDispatcher("showValue.jsp").forward(request, response);
}
}
接下来,您可以使用表达式语言访问值的属性:
<!DOCTYPE html>
<html>
<head>
<title>${person.forename} ${person.surname}</title>
</head>
<body>
<h1>Hello ${person.forename}!!!</h2>
</body>
</html>
在 servlet 的会话属性中添加该 ViewBean 对象。并在 jsp 中获取该变量。
在小服务程序中
ViewBean viewbwanObject= new ViewBean() session.setAttribyte("obj",vi);
在jsp中。
<%
ViewBean v= (ViewBean)session.getAttribute("obj") %>
像这样的东西应该工作
request.setParameter("nameOfmyObjectParam",MyObject); //or request.setAttribute
String yourJSP = "/WEB-INF/pages/yourJSP.jsp";
RequestDispatcher rd = getServletContext().getRequestDispatcher(yourJSP);
rd.forward(request, response);
使用 Servlet API 将 bean 设置为 servlet 中的请求属性,如下所示 -
request.setAttribute("viewBean", viewBean);
并使用 EL 在 JSP 中检索(使用)它,如下所示 -
${requestScope.viewBean}