I have a bean B which I have to create myself (using new B()) and which has @Autowire and @PostConstruct annotations.
How do I make Spring process these annotations from my bean A?
Related question:
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Aaron, I believe that your code is correct but I used the following:
The first method will process
@Autowirefields and methods (but not classic properties). The second method will invoke post processing (@PostConstructand any definedBeanPostProcessors).Application context can be obtained in a bean if it implements
ApplicationContextAwareinterface.