sprinp配置文件的拆分方式有几种

 我来答
匿名用户
2016-05-30
展开全部
第一种:
通过web.xml配置加载spring上下文环境,其配置方式如下:

web.xml

[xhtml] view plain copy
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext*.xml</param-value>
</context-param>

(在web.xml文件里面添加以上代码。只要将以applicationContext-开头的xml文件放到WEB-INF目录之下就可以了。 一般会有applicationContext-service.xml和applicationContext-dao.xml。)

通过listener加载

[xhtml] view plain copy
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>

或者利用severlet类加载

[xhtml] view plain copy
<servlet>
<servlet-name>context</servlet-name>
<servlet-class>
org.springframework.web.context.ContextLoaderServlet
</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>

第二种方式:
使用Struts插件
在struts-config.xml中

[xhtml] view plain copy
<plug-in className="org.springframework.web.struts.ContextLoaderPlugIn">
<set-property property="contextConfigLocation"
value="/WEB-INF/applicationContext.xml,/WEB-INF/action-servlet.xml,,,,,可以多个"/>
</plug-in>
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式