在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的标签