在动作类中给出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>
,也可以通过查询字符串参数设置。
This和this个问题使用XML配置进行布尔字段验证,但没有说明任何注释。
如何使用注释验证此类布尔字段?
→我已经避免使用拦截器和其他东西来缩短代码。
答案 0 :(得分:2)
您可以使用@FieldExpressionValidator
执行此操作。例如
@Validations(fieldExpressions = @FieldExpressionValidator(fieldName="boolField", expression="boolField == true", message="boolField should be set"))