I would like to get step-by-step information on:
How to split ApplicationContext file (ex: myapp-servlet.xml) into several XML files in Spring with some examples?
I tried setting up web.xml using "ContextLoaderListener" and had contextConfigLocation like:
<init-param> <param-name>contextConfigLocation</param-name> <param-value> /WEB-INF/business-services.xml </param-value> </init-param>
but it creates problems.
Please give me a detailed explanation on how to do this.
Thanks in advance!
Krupal
source share