I've started using Spring 3 Java Config with the JSR-330 @Inject annotations. Unlike the Spring @Autowire, Spring does not fail at startup if the @Inject parameters are null. Is there a way to do this within Java Config?

Edit: Just a clarification, I would like this as the default behaviour so I don't have to put @Required on every field.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

I think you can use @Required on a setter for the dependency, in addition to @Inject.

link|improve this answer
Sorry, I forgot to mention that I'd like it as the default behaviour without having to put @Required on all the fields. – Arthur Kalmenson Aug 5 '10 at 11:27
I guess there's no other way, thanks Bozho. – Arthur Kalmenson Aug 11 '10 at 13:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.