是否可以在某些条件下验证同一对象上的不同spring beans字段? 例如:我有共同的POJO类:
public class PoJo {
// Validate this field only for @RequestMapping(method = GET, value = "/first")
private String fld1;
// Validate this field only for @RequestMapping(method = GET, value = "/second")
private String fld2;
// Validate this field only for @RequestMapping(method = GET, value = "/third")
private String fld3;
}
此要求来自使用单个类对象的逐步操作 处理。例如订购商店项目:第一步我需要field1,第二步 - field2等。