在一個web應用程序內包裝的初始化春豆,我們定義範圍內的配置位置春天初始化所有這樣一個jar文件
<!-- 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>
豆我試圖找到答案,如果可能的話在一個jar文件裏面(包含所有的spring bean),在那裏我沒有web.xml文件?
但我在哪裏指定 ?我可以在一個ctx- *文件中指定嗎? –
subh
2010-03-04 23:31:59
我檢查了XSD,它沒有定義 http://www.springframework.org/schema/beans/spring-beans-2.5.xsd –
subh
2010-03-04 23:36:02
如果你想使用這個沒有網頁。 xml,那麼你應該自己創建應用程序上下文。在初始化代碼中,您可以使用'classpath:'前綴來加載打包在jar中的配置文件 – 2010-03-04 23:49:51