Reputation: 1618
We are building a java application using spring hibernate maven. The jar will be used in a non spring web application that uses ejb and plain jdbc. Ejb will access the jar interface methods which in turn makes hibernate calls. What changes are needed in the web application to load the spring context during start up? Is it feasible?
Upvotes: 2
Views: 304
Reputation: 1428
If you want to keep your jar decoupled from web application you should do this:
Upvotes: 1