Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm an end-user of one of my company's products. It is not very suitable for integration into Spring, however I am able to get a handle on the context and retrieve the required bean by name. However, I would still like to know if it was possible to inject a bean into this class, even though the class is not managed by Spring itself.

Clarification: The same application which is managing the lifecycle of some class MyClass, is also managing the lifecycle of the Spring context. Spring does not have any knowledge of the instance of MyClass, and I would like to some how provide the instance to the context, but cannot create the instance in the context itself.

share|improve this question
Please clarify: You want to inject the bean via Spring Configuration, Spring dynamically at runtime, or programmatically via a setter? – Ken Gentle Nov 21 '08 at 21:45
Any method is fine. The point is that the application has created the object into which I want to inject a bean, so the original object is not managed by the Spring context. – Spencer Kormos Nov 21 '08 at 22:01
Also, consider using a factory method so you can put the class into the application context and configure it as per a normal Spring bean. Look at the Spring reference docs regarding bean factories. – cletus Nov 22 '08 at 0:54
I'm not sure how a factory method would have anymore access to a bean not managed by the Spring context, which is the point of the question. – Spencer Kormos Nov 22 '08 at 5:50

5 Answers

up vote 12 down vote accepted

You can do this:

ApplicationContext ctx = ...
YourClass someBeanNotCreatedBySpring = ...
ctx.getAutowireCapableBeanFactory().autowireBeanProperties(
    someBeanNotCreatedBySpring,
    AutowireCapableBeanFactory.AUTOWIRE_AUTODETECT, true);

You can use @Autowired and so on within YourClass to specify fields to be injected etc.

share|improve this answer
I never got a chance to try this, but it does seem to come the closest to what I was looking for. It would be nice to give it a whirl. – Spencer Kormos Feb 3 '10 at 21:04

suppose that u have the following dependency chain:

A --> B --> C --> x --> y -- > Z

A, B, C are spring managed beans (constructed and manged by sprign framework) x, y are really simple POJOs that constructed by your application, without spring assistance

now if you want that y will get a reference to Z using spring that you need to have a 'handle' to the spring ApplicationContext

one way to do it is to implement ApplicationContextAware interface . In this case I would suggest that either A, B or C will implement this interface and will store the applicationContext reference in a static member.

so lets take Class C for example:

class C implmenets ApplicationContextAware{
    public static ApplicationContex ac;
     void setApplicationContext(ApplicationContext applicationContext)  {
               ac = applicationContext;
     }
 .............
}

now, in class y you should have:

(Z)(C.ac.getBean("classZ")).doSomething()

HTH -- Yonatan

share|improve this answer
How about: x and y has no dependency on C, and I wish to inject Z into x or y? It seems I would have to use the @Comparable tag in spring-context, then do some runtime weaving after the fact. So far I have not managed to get this working, and adds extra work. Looking for an easier way. – Spencer Kormos Nov 24 '08 at 2:38
This is outright ugly – fnt May 4 at 20:25

Be careful that in oldest version of Spring, there is thread-safe problem with bean factory http://jira.springframework.org/browse/SPR-4672

share|improve this answer

Searching endless combos of autowire inject spring bean into pojo applicationcontextaware beanaware etc circled me back here but this didnt provide a complete enough solution for me.

This is a much better implementation/tutorial of this IMO: I hope it helps everyone like it finally helped me.

Accessing Spring Beans from outside Spring Context

share|improve this answer

I think this post may provide you with some answers

It shows you how to inject beans into arbitrary POJO's

share|improve this answer
There seems to be a lot of confusion in the resulting comments from this post. Have you gotten it to work? Is the lazy-init flag being set to true mean that it's going to search for an object instance in the JVM and not instatiate it if already exists? – Spencer Kormos Nov 21 '08 at 22:03
This did not work in a basic example, as it seems to be the common case from the commenters on the post. – Spencer Kormos Nov 22 '08 at 5:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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