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

时间:2014-01-03 11:52:16

标签: java validation struts2 ognl struts2-convention-plugin

在动作类中给出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>,也可以通过查询字符串参数设置。

Thisthis个问题使用XML配置进行布尔字段验证,但没有说明任何注释。

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

我已经避免使用拦截器和其他东西来缩短代码。

1 个答案:

答案 0 :(得分:2)

您可以使用@FieldExpressionValidator执行此操作。例如

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