如何使用注释验证 Struts2 中的布尔字段



在这样的操作类中给定一个Boolean字段。

@Namespace("/admin_side")
@ResultPath("/WEB-INF/content")
@ParentPackage(value="struts-default")
public final class TestAction extends ActionSupport implements Serializable, ValidationAware, ModelDriven<Entity>
{
    private Boolean boolField;
    public Boolean getBoolField()
    {
        return boolField;
    }
    public Boolean setBoolField(Boolean boolField)
    {
        this.boolField=boolField;
    }
    @Validations(requiredFields={@RequiredFieldValidator(fieldName="boolField", type= ValidatorType.FIELD, key="delete.row.confirm")})
    @Action(value = "testAction",
            results = {
                @Result(name=ActionSupport.SUCCESS, type="redirectAction", location="Test.action"),
                @Result(name = ActionSupport.INPUT, location = "Test.jsp")},
    public String testAction()
    {            
        return ActionSupport.SUCCESS;
    }
    // The rest of the action class.
}

仅当操作类boolField中的字段设置为 true 时,才应对其进行验证。它可以是隐藏字段<s:hidden>也可以通过查询字符串参数设置。

这个问题

和这个问题使用 XML 配置进行布尔字段验证,但不说明注释。

如何使用注释验证此类布尔字段?

我避免了拦截器和其他东西来缩短代码。

您可以使用

@FieldExpressionValidator执行此操作。例如

@Validations(fieldExpressions = @FieldExpressionValidator(fieldName="boolField", expression="boolField == true", message="boolField should be set"))

相关内容

  • 没有找到相关文章

最新更新