Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法像这样在我的 DispathAction 上设置属性:
request.setAttribute("myObject", object);
然后在我的jsp上获取对象的属性?
<%=request.getAttribute("object.attr1") %> <%=request.getAttribute("object.attr2") %>
我的页面不是表格。
是的。只需忘记 scriptlet 并学习使用JSP EL和JSTL:
<c:out value="${myObject.attr1}"/> <c:out value="${myObject.attr2}"/>
请注意,这假定该对象遵守 JavaBean 约定,并将调用您的对象上的getAttr1()and 。getAttr2()JSTL<c:out>标记对 HTML 特殊字符(<、>、&等)进行转义。
getAttr1()
getAttr2()
<c:out>
<
>
&