Hi All,

I was creating simple Spring application in Netbeans 7.1 and I notice two application context files: applicationContext.xml and dispatcher-servelt.xml. It is good practice to split our application context across multiple XML files and we can set them as contextConfigLocation parameters. I got this part but when I check web.xml file I can see only

<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>

Isn't that true that we need to give all list of xml files as parameter? Or i am missing something.

Thanks,
Anjib