是否有在 JSP 中打印 javabeans 的数组/集合元素的标准方法?我所知道的是<jsp:getProperty>
不能做到这一点的标签。我知道它可以使用自定义标签来完成,但是 JSP 应该提供这样一个基本要求。
另外,我读过使用setAttribute()
方法PageContext
等ServletContext
我们可以在 Servlet 中获取 bean 并对其进行处理,但它给了我null
价值。
pageContext.getAttribute("beanPropertyVariable") //set in page scope
application.getAttribute("beanPropertyVariable") //set in application scope
我怎样才能做到这一点?