文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>Spring加载配置文件的3种方法

Spring加载配置文件的3种方法

时间:2010-10-01  来源:kelin1314

1方法(web.xml) <web-app>    <context-param>       <param-name>contextConfigLocation</param-name>       <param-value>/WEB-INF/applicationContext-*.xml</param-value>    </context-param> <listener>     <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>  </listener> </web-app> 2方法(web.xml) <web-app>    <context-param>       <param-name>contextConfigLocation</param-name>       <param-value>/WEB-INF/applicationContext-*.xml</param-value>    </context-param>    <servlet>       <servlet-name>SpringContextServlet</servlet-name>       <servlet-class>org.springframework.web.context.ContextLoaderServlet</servlet-class>       <load-on-startup>1</load-on-startup>    </servlet> </web-app> 3方法在(struts-config.xml)中加载  <plug-in className="org.springframework.web.struts.ContextLoaderPlugIn">         <set-property property="contextConfigLocation"              value="/WEB-INF/applicationContext.xml,                    /WEB-INF/action-servlet.xml"/>  </plug-in>

转自:http://weijie.blog.51cto.com/340746/66502  

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载