show/hide this revision's text 2 added 6 characters in body

Are you calling context.getBean("beanName") to get a reference to the bean or are you doing a new SomeClass()SomeClass()? If you do it through getBean() then the injected properties should be set.

Also, be sure to use the same bean factory (ClassPathXmlApplicationContext instance) for retrieving all your beans. This should most likely be static final and used by the entire application.

show/hide this revision's text 1

Are you calling context.getBean("beanName") to get a reference to the bean or are you doing a new SomeClass()? If you do it through getBean() then the injected properties should be set.

Also, be sure to use the same bean factory (ClassPathXmlApplicationContext instance) for retrieving all your beans. This should most likely be static final and used by the entire application.