在struts2中,如何使用注释来验证模型驱动的操作?

时间:2014-05-02 14:55:32

标签: java struts2

我想使用注释来验证我的行为。

但是数据位于模型中(因为是modeldriven接口),所以我无法注释动作字段。

那么,我如何注释"模型"的字段?

1 个答案:

答案 0 :(得分:1)

您可以在覆盖的@VisitorFieldValidator方法上使用getModel()来使用注释。

@Override
@VisitorFieldValidator(appendPrefix = false)
public Object getModel() {
    return yourBean;
}

现在使用注释进行常规验证。