struts2标签获取(java代码里的变量)
程序员文章站
2022-08-11 11:54:04
<%
Integer month = 9;
request.setAt...
<%
Integer month = 9;
request.setAttribute("month",month);
%>
<s:textfield value="%{#request.month}"></s:textfield>
这样就能获得month的值了