I have this in my web.xml:
<context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:spring-config.xml</param-value> </context-param>
I suspect this is a convention used only by Spring? If so, will my application need more time to download, since I do not specify the direct location of the file, but now it should look for the entire path to the class?
user4903
source share