开发者

Java/Spring: Why won't Spring use the validator object I have configured?

I'm writing a web app with Java & Spring 2.5.6 and using annotations for bean validation. I can get the basic annotation validation working fine, and Spring will even call a custom Validator declared with @Validator on the target bean. But it always instantiates a brand new Validator object to do it. This is bad because the new validator has none of the injected dependencies it needs to run, and so it throws a null pointer exception on validate. I need one of two things and I don't know how to do either.

  1. Convince Spring to use the validator I have already configured.
  2. Convince Spring to honor the @Autowired annotations when it creates the new validator.

The validator has the @Component annotation, like this.

@Component
public class AccessCodeBeanValidator implements Validator {
    @Autowired
    private MessageSource messageSource;

Spring finds the validator in the component scan, injects the autowired dependencies, but then ignores it and creates a new one at validation time.

The only thing that I can do at the moment is add a validator reference into the controller for each validator object and use that ref directly, instead of relying on the bean validation framework to call the validator for me. It looks like this.

// first validate via the annotations on the bean
beanValidator.validate(accessCodeBean, result);
// th开发者_如何学Pythonen validate using the specific validator class
acbValidator.validate(accessCodeBean, result);
if (result.hasErrors()) {

If anyone knows how to convince spring to use the existing validator, instead of creating a new one, or how to make it do the autowiring when it creates a new one, I'd love to know.

Edit:

Here is the code that tells spring what validator to use for the bean.

@Validator(AccessCodeBeanValidator.class)
public class AccessCodeBean {

It works, but is limited as described above.

And so, currently, I have the @Validator line commented out and instead I'm autowiring the validator to the controller like this.

@Resource(name="accessCodeBeanValidator")
public void setAcbValidator(Validator acbValidator) {
    this.acbValidator = acbValidator;
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜