欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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的值了