aspose file tools
The moose likes Spring and the fly likes How to inject a factory through Spring Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Frameworks » Spring
Reply Bookmark "How to inject a factory through Spring" Watch "How to inject a factory through Spring" New topic
Author

How to inject a factory through Spring

Anshul Chandra Saxena
Greenhorn

Joined: Sep 10, 2009
Posts: 14
Hi

I have a main class, that receives an action from the jsp. On the basis of action value i need to invoke the correct service. I have adopted the Abstract Factory Pattern, wherein on the basis of action value, the correct service is invoked. My only problem is how to inject this factory into the main class using Spring.

Can anyone please let me know, how to do this.

thanks
Mark Spritzler
ranger
Sheriff

Joined: Feb 05, 2001
Posts: 17243
    
    1

There are Factory classes that you can create in Spring that can create instances for that class to inject. All you have to do is implement the FactoryBean interface. This way your instances can also be set to prototype, so that you get a new instance each time.

http://www.google.com/url?sa=t&source=web&ct=res&cd=1&url=http%3A%2F%2Fstatic.springsource.org%2Fspring%2Fdocs%2F2.5.x%2Fapi%2Forg%2Fspringframework%2Fbeans%2Ffactory%2FFactoryBean.html&ei=RWG2Som1J4qasgPpgsTRDA&usg=AFQjCNEKWO-LNJbQPEIRJbpQrAe7k_F5OQ

http://www.google.com/url?sa=t&source=web&ct=res&cd=3&url=http%3A%2F%2Fblog.arendsen.net%2Findex.php%2F2005%2F07%2F03%2Fusing-factorybeans-to-create-the-uncreatable%2F&ei=RWG2Som1J4qasgPpgsTRDA&usg=AFQjCNG66JLAd9rI0WRDLwkxxbBf7mtaPA


Mark


Perfect World Programming, LLC - Two Laptop Bag - Tube Organizer
How to Ask Questions the Smart Way FAQ
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: How to inject a factory through Spring
 
Similar Threads
Spring core container is the basis for complete Spring framework?
How to inject EntityManager via setter in spring
Injection - instance variable
spring wont inject the entitymanager
What to choose, daoFactory or a SpringUtil from ZK?