Struts 2 REST 和验证
我正在使用 Struts 2 和 REST 插件。 Struts 2 中的验证是 ClassName-actionAlias-validation.xml。但是,使用 REST 插件,操作别名始终为 /。例如 OrdersController -> /订单-> OrdersController-orders-validation.xml。 如何根据 REST 方法获得不同的验证?主要是,我想要对 update() 方法进行一种验证,对 create() 方法进行另一种验证。
I'm using Struts 2 and the REST plugin. Validation in Struts 2 is ClassName-actionAlias-validation.xml. However, using the REST plugin the action alias is always /. For example OrdersController -> /orders -> OrdersController-orders-validation.xml.
How can I get different validations depending on the REST method? Mainly, I want one type of validation for the update() method and another for the create() method.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否考虑过使用注释进行验证?这使得将它们与正确的方法联系起来变得更简单。
Have you considered using annotations for the validations? That makes it simpler to tie them to the correct method.
啊,我不知道您可以在特定方法上使用基于注释的验证。我没怎么用过Struts。谢谢!
但是,我确实必须修改 struts.xml 以允许对不同方法进行不同的验证(validateAnnotatedMethodOnly 必须为 true)。它看起来是这样的:
Ahh, I didn't know that you could use annotation based validation on a specific method. I haven't used Struts that much. Thanks!
However, I did have to modify my struts.xml to allow different validations on different methods (validateAnnotatedMethodOnly had to be true). Here is what it looks like: