可能重复:
How to assign <s:property value=“a”> value to a jsp variable
我尝试将jsp属性中的值赋给java变量,但它似乎对我不起作用......
这是错误:
An error occurred at line: 14 in the jsp file: /WEB-INF/ fivepluscms/client/CMSGallery.jsp
Syntax error on token "=", ; expected.
以下是代码:
<s:set var="data"></s:set>
<% int nume =%><s:property value="#data"/><%;%>
我提到我在此变量的动作类中有getter和setter。
提前致谢
答案 0 :(得分:1)
<s:set name="nume" value="data" />
会在您的操作类中调用getData()
,并将返回值分配给nume
变量。