Struts2的Action里的存入一个user对象,请问如何在JSP页面获得user对象中的属性值。

2024-10-29 16:55:32
推荐回答(1个)
回答1:

在struts2中jsp要获取ation的属性方法:
1、例如action中有一个pageDAO对象,该对象有一个int型的currentPage属性,可以在jsp中这样得到currentPage的值:
//注意,action中要有pageDAO对象的get方法,属性currentPage也要有get方法。
int test=(Integer)request.getAttribute("pageDAO.currentPage");
2、EL表达式:${pageDAO.currentPage}
3、使用struts2的标签