`

applicationContext.xml 配置文件在web.xml中的写法

阅读更多
applicationContext.xml 配置文件的一些认识
存放位置:
1:src下面
需要在web.xml中定义如下:
<context-param>
  <param-name>contextConfigLocation</param-name>
  <param-value>classpath:applicationContext.xml</param-value>
</context-param>

2:WEB-INF下面
需要在web.xml中定义如下:
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>WEB-INF/applicationContext*.xml</param-value>
</context-param>

spring的 配置文件在启动时,加载的是web-inf目录下的applicationContext.xml,
运行时使用的是web-info/classes目录下的applicationContext.xml。

配置web.xml使这2个路径一致:


<context-param>
  <param-name>contextConfigLocation</param-name>
  <param-value>/WEB-INF/classes/applicationContext.xml</param-value>
</context-param>

多个配置文件的加载
<context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>
            classpath*:conf/spring/applicationContext_core*.xml,
            classpath*:conf/spring/applicationContext_dict*.xml,
            classpath*:conf/spring/applicationContext_hibernate.xml,
            classpath*:conf/spring/applicationContext_staff*.xml,
            classpath*:conf/spring/applicationContext_security.xml
            classpath*:conf/spring/applicationContext_modules*.xml
            classpath*:conf/spring/applicationContext_cti*.xml
            classpath*:conf/spring/applicationContext_apm*.xml
        </param-value>
    </context-param>

contextConfigLocation 参数定义了要装入的 Spring 配置文件。


首先与Spring相关的配置文件必须要以"applicationContext-"开头,要符合约定优于配置的思想,这样在效率上和出错率上都要好很多。
还有最好把所有Spring配置文件都放在一个统一的目录下,如果项目大了还可以在该目录下分模块建目录。这样程序看起来不会很乱。
在web.xml中的配置如下:
Xml代码
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:**/applicationContext-*.xml</param-value> 
</context-param>

"**/"表示的是任意目录;
"**/applicationContext-*.xml"表示任意目录下的以"applicationContext-"开头的XML文件。
你自己可以根据需要修改。最好把所有Spring配置文件都放在一个统一的目录下,如:

<!-- Spring 的配置 -->
<context-param>
  <param-name>contextConfigLocation</param-name>
  <param-value>classpath:/spring/applicationContext-*.xml</param-value>
</context-param>
分享到:
评论

相关推荐

    web.xml中如何设置配置文件的加载路径实例详解

    这种写法表示配置文件放置于WEB-INF目录下的config子目录中,并使用了通配符`*-context.xml`来匹配所有符合该模式的XML配置文件。这样的配置允许你将多个配置文件放在同一目录下,它们都会被加载。 值得注意的是,...

    最简单的SpringMVC框架(使用maven)

    文章链接提供的详情中,作者详细地介绍了每个步骤,包括配置文件的写法、Controller的实现以及如何在IDE中运行和调试。对于初学者来说,这是一个很好的实践教程,能够帮助他们快速理解和掌握SpringMVC和Maven的集成...

    Spring XML配置十二个最佳实践

    在Spring XML配置文件中,可以使用简化的语法来为Bean的构造器参数和属性赋值。例如,以下两种写法是等价的: **原始写法:** ```xml &lt;bean id="orderService" class="com.lizjason.spring.OrderService"&gt; ...

    浅析Spring配置中的classpath:与classpath*:的区别

    通常我们使用这种写法是在 web.xml 中,例如 Spring 加载 bean 的上下文时。classpath: 只会到你的 class 路径中查找文件,不会包括 jar 文件中的 class 路径。 classpath*:是指不仅包含 class 路径,还包括 jar ...

    Spring_单元测试_2种写法

    在第一种写法中,我们使用了AbstractDependencyInjectionSpringContextTests这个抽象类,该类提供了对Spring的支持,可以自动装配 Beans 和加载ApplicationContext。下面是一个示例代码: ```java public class ...

    Spring AOP配置源码

    @Component("userService")等价于在spring配置文件中定义一个&lt;bean id="userService"/&gt; @Resource(name="userDAO")将userDA注入进来 写一个拦截器的类 package com.spring.aop; import org.springframework....

    ssm框架最基本源码

    在搭建SSM框架的过程中,首先需要配置Spring的ApplicationContext.xml文件,定义Bean的实例化和依赖关系。接着配置SpringMVC的DispatcherServlet,定义请求映射和视图解析。然后是MyBatis的配置,包括...

    SSM框架和数据库脚本代码

    在整合SSM框架的过程中,我们需要配置Spring的ApplicationContext.xml,定义Bean的实例化规则;然后是SpringMVC的DispatcherServlet配置,包括拦截器、视图解析器等;再有是MyBatis的mybatis-config.xml,设置数据源...

    Spring集成MyBatis简单demo

    在`META-INF`和`WEB-INF`目录下,通常会存放应用的配置文件、web.xml等,它们在Web应用程序中起着关键作用。 总结来说,Spring和MyBatis的集成主要包括以下几个步骤: 1. 引入相关依赖。 2. 配置MyBatis的核心文件...

    ssh2(struts2+spring2.5+hibernate3.3)自动生成模版

    {自定义的存放包}目录:4个xml文件(applicationContext-dao.xml(dao注入配置),applicationContext-service.xml(service注入配置),action-servlet.xml(action注入配置),struts-{自定义的存放包名}.xml(struts2的...

    基于ssi struts_spring_ibatis 的一个增删 查 更新的小例子

    - **配置Spring**:在`applicationContext.xml`中,定义Bean,包括Action类、DAO接口及其实现类、数据源等。使用Spring的依赖注入,将这些对象注入到需要的地方。 - **配置iBATIS**:创建`sqlMapConfig.xml`,配置...

    Spring容器的通俗理解及简单写法

    在Java开发中,Spring容器(也称为ApplicationContext或BeanFactory)扮演着重要角色,它通过控制反转(Inversion of Control, IOC)和依赖注入(Dependency Injection, DI)的概念,帮助开发者构建松散耦合的系统。...

    java高级工程师面试题

    ApplicationContext context = new ClassPathXmlApplicationContext("spring-beans.xml"); UserService userService = context.getBean("userService", UserService.class); ``` ### JDK中用到的设计模式 1. **...

    Android App更改应用的图标的实现方法

    一般情况下,我们App图标在Androidmanifest.xml中设置,通过Application android:icon属性指定,写法如下: &lt;?xml version=1.0 encoding=utf-8?&gt; &lt;manifest xmlns:android=http://schemas.android....

Global site tag (gtag.js) - Google Analytics