struts2判断报错

我在一个<s :if 的标签出错 如下:

According to TLD or attribute directive in tag file, attribute test does not accept any expressions

后来找到:

struts2某些版本中(如:struts2.0.14和struts2.1.6),判断标签不支持EL表达式(即:${}形式),换成OGNL表达式即可。

<s:if test="%{username != ''}">
username不为空!!!
</s:if>

 

你可能感兴趣的:(struts2)