Let's say that I have a Java class like this:
public class PersonGrabber {
private PersonDAO dao;
public void setDao(PersonDao dao) {
this.dao = dao;
}
public PersonDAO getDao() {
return this.dao;
}
//...
}
And I have a corresponding Spring bean like this:
<bean id="personGrabber" class="com.stackoverflow.example.PersonGrabber">
<property name="dao"><null/></property>
</bean>
Now, this is bad because I really need the dao property to be set to something on that bean before it becomes useful. However, I don't wanna wait till runtime to wait for it to throw a NullPointerException. Is there anyway to tell Spring that a bean property MUST be populated before it can be used? Ideally, I'd like it to crash on initialization so that I don't have to wait for it to find out.
I was hoping for something like an annotation along the lines of:
public class PersonGrabber {
@SpringRequired
private PersonDAO dao;
//...
}
Any help from some Spring veterans out there?