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?
you can use the prefix 'classpath:'
classpath:ctx-*.xml
see http://static.springsource.org/spring/docs/2.5.6/reference/resources.html#resources-app-ctx
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With