Struts Validation.xml 问题
我想对密码长度进行验证,指定 minlength 应为 15,我使用 struts validtion.xml 来执行此操作,我能够验证必填字段,但不能验证长度,这是我出错的地方。代码类似于
validation.xml
<formset>
<form name="LoginForm">
<field property="password" depends="required,minlen">
<arg key="label.password" position="0"/>
<arg key="${var:minlen}" resource="false" />
<var>
<var-name>minlen</var-name>
<var-value>3</var-value>
</var>
</field>
<field property="userName" depends="required">
<arg key="label.userName" position="0"/>
</field>
</form>
</formset>
jsp 就像
<html:form action="/Login?method=login">
<body>
<table cellspacing="0" cellpadding="0" borde="0" style="width:300px;text-align:left;">
<tr><td colspan=2><html:errors /></td></tr>
<tr>
<th><bean:message key="label.userName"/></th>
<td><html:text name="LoginForm" property="userName" /></td>
</tr>
<tr>
<th><bean:message key="label.password"/></th>
<td><html:password name="LoginForm" property="password" /></td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
<tr>
<td colspan="2" align="center"><html:submit styleClass="submit" value="Login" style="width:60px; text-align:center"/></td>
</tr>
</table>
</body>
</html:form>
请告诉我该怎么做?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的validation.xml应该是:
检查标准内置验证”部分="nofollow noreferrer">http://struts.apache.org/1.2.4/userGuide/dev_validator.html
Your validation.xml should be:
check the section "Standard Built In Validations" in http://struts.apache.org/1.2.4/userGuide/dev_validator.html