Non-managed by Spring web-application and jar file with Spring features
- by EugeneP
My idea is to create a .jar file that contains Services
managed by Spring, that should be got by getBean()
I want to put it to WEB-INF/lib of a Web-app
Then in web-app Servlets I want to get use of the functionality of a Jar file.
1 Idea. Create classes that encapsulate invokation to Spring Context (getBean() etc)
So then, I suppose there'll be no problem in using those in Servlets through jar import.
Only thing, what kind of context I should use inside .jar to get beans so that it worked after packing into jar? ApplicationContext or what?
2 Idea. Is there another simple solution how to pack into jar and then use Services in a non-managed by Spring environment?