In a web-app, we define the context config location for spring to initialize all the beans like this
<!-- Spring Application Configuration -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/ctx-*.xml</param-value>
</context-param>
<listener>
<description>Spring Context Listener</description>
<display-name>SpringContextListener</display-name>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
I am trying to find out, if it is possible to do that inside a jar file (containing all the spring beans) where I donot have a web.xml?