Hi,
Is it possible to load my bean definitions by XmlWebApplicationContext using context-param from jar files ???
i mean,
when i set in my web.xml:
id doesnt work.Code:<context-param> <param-name>contextConfigLocation</param-name> <param-value> classpath*:ORSApplicationContext.xml </param-value> </context-param>
it seems that XmlWebApplicationContext can read only from contextConfigLocation where i cant use classpath just like i do in ClassPathXmlApplicationContext.
any ideas ?


Reply With Quote
.