瓷砖2 + Struts2 XML 验证
我有一个问题,我使用 Strits2、Tiles2 和 Struts xml 验证登录,当我运行 web 应用程序时,第一页是登录,struts2 xml 验证器向我发送错误,我如何告诉我第一次不要验证直到提交?
<action name="loginPage" class="com.webapp.login.action.LoginAction">
<result name="input" type="tiles">loginPage</result>
<result name="success" type="tiles">loginPage</result>
</action>
i have a problem, i have my login with Strits2, Tiles2 and Struts xml validations, when i run my webapp the first page is the login and the struts2 xml validator send me the error, how do i tell that for the first time do not validate until submit?
<action name="loginPage" class="com.webapp.login.action.LoginAction">
<result name="input" type="tiles">loginPage</result>
<result name="success" type="tiles">loginPage</result>
</action>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每当您想要进入“空白表单”时,您应该执行操作的
input()
方法。这告诉 Struts 2 您不想对该操作执行任何验证:然后,您应该将登录表单提交到执行默认操作
execute()
的另一个操作定义。然后 Struts 2 将尝试执行 Action 验证:Whenever you want to go to a "blank form", you should execute the
input()
method of your Action. This tells Struts 2 that you do not want to perform any validation for the action:Then, you should submit your login form to another action definition that executes the default action
execute()
. Struts 2 will then try to perform Action validation: