我知道的有三種方法:
方法一,,在web.xml配置文件中使用ContextLoaderListener或ContextLoaderServlet,代碼如下: <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:context/*/*.xml</param-value> </context-param> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> 或者 <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:context/*/*.xml</param-value> </context-param> <servlet> <servlet-name>context</servlet-name> <servlet-lass>org.springframework.web.context.ContextLoaderServlet</servlet-class> <load-on-startup>1</load-on-startup> </servlet>
方法二,在一個主要的xml文件中(如applicationContext.xml),,通過<import>標(biāo)簽導(dǎo)入其他xml文件,代碼如下:
<import resource="classpath:com/xml/controller*.xml"/> <!--其他Bean--> <bean id="userService" class="com.irp.service.UserServiceImpl"/>
方法三,,在使用springMVC的條件下可使用,,其他情況有待大家驗證,在web.xml中配置DispatcherServlet的servlet標(biāo)簽中增加<init-param>子標(biāo)簽,,詳細(xì)代碼:
<servlet> <servlet-name>spring-mvc</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:context/*/*.xml</param-value> </init-param> <load-on-startup>2</load-on-startup> </servlet> <servlet-mapping> <servlet-name>spring-mvc</servlet-name> <url-pattern>*.htm</url-pattern> </servlet-mapping>
使用<init-param> 子標(biāo)簽的好處一是簡單,,二可以省去spring-mvc-servlet.xml文件,如果采用第一種方法,,則必須要有spring-mvc-servlet.xml文件,,否則啟動出現(xiàn)加載異常; |
|