EL in struts 2 not working
问题 I have a search form(name = studentForm) that is submitted to struts2 action which fetches data from db and returns to a JSP with a form (name = studentListForm). When I use s:property, I'm able to get a property from the action form, whereas with EL is empty. Action private int pageNumber; /** some code here **/ setPageNumber(1); public int getPageNumber() { return pageNumber; } public void setPageNumber(int pageNumber) { this.pageNumber = pageNumber; } JSP <%@ page language="java"