Struts Validation.xml 问题

发布于 2024-09-07 11:01:30 字数 1661 浏览 3 评论 0 原文

我想对密码长度进行验证,指定 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">&nbsp;</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>

请告诉我该怎么做?

I want to do a validation of password length specifying minlength should be 15 ,i am using struts validtion.xml to do this,i am able to validate required fields but not length ,where i am going wrong.The code is like

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 is like

<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>

Please tel me how to do this ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

人生戏 2024-09-14 11:01:30

您的validation.xml应该是:

<field property="password" depends="required,minlength">
    <arg0 key="label.password" position="0"/>
    <arg1 name="minlength" key="${var:minlength}" resource="false"/>
    <var>
    <var-name>minlength</var-name>
    <var-value>3</var-value>
</var>
</field>

检查标准内置验证”部分="nofollow noreferrer">http://struts.apache.org/1.2.4/userGuide/dev_validator.html

Your validation.xml should be:

<field property="password" depends="required,minlength">
    <arg0 key="label.password" position="0"/>
    <arg1 name="minlength" key="${var:minlength}" resource="false"/>
    <var>
    <var-name>minlength</var-name>
    <var-value>3</var-value>
</var>
</field>

check the section "Standard Built In Validations" in http://struts.apache.org/1.2.4/userGuide/dev_validator.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文