What is the correct way to split Spring's configuration to multiple xml files?
At the moment I have
- /WEB-INF/foo-servlet.xml
- /WEB-INF/foo-service.xml
- /WEB-INF/foo-persistence.xml
My web.xml has the following:
<servlet>
<description>Spring MVC Dispatcher Servlet</description>
<servlet-name>intrafest</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<init-param>
...