My web application have 2 modules:
- core (service, repository/dao, entities, etc.)
- web (views, controllers, converters, filters, etc.)
The web module have the dispatcher-context.xml with Spring MVC definitions.
I'm confused where to put the Spring Root Application Context (application-context.xml) with Data/JTA definitions - Web module or in Core module?
Thanks in advance!