程序员的自我修养

尚筹网项目-3(配置文件配置)

2020-11-25  本文已影响0人  殁月

1.配置文件架构

首先我们要明白为什么要有配置文件,SSM项目启动,Tomcat会寻找入口文件web.xml,它会根据web.xml指定的配置文件初始化Spring的IOC容器和SpringMVC的IOC容器,这两个容器呈现父子关系(Spring是父,SpringMVC是子),而如何初始化这两个容器,我们就需要在配置文件中配置

本文将配置文件分为spring-beans.xml、spring-mybatis.xml、spring-tx.xml和spring-mvc.xml(当然也可以自己划分,只要合理、能实现要求即可),分别用于加载Spring中的组件、整合mybatis、配置事务和配置MVC,其中spring-beans.xml、spring-mybatis.xml、spring-tx.xml属于Spring,spring-mvc.xml属于SpringMVC,在web.xml不同位置进行配置。我们将所有配置文件都放入webui子工程的resources目录下。

spring-beans.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context-4.3.xsd">

    <!-- 扫描com.atguigu.crowd包下,除了有@Controller注解的组件 -->
    <context:component-scan base-package="com.atguigu.crowd">
        <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
    </context:component-scan>

    <!-- 加载jdbc.properties文件 -->
    <context:property-placeholder location="classpath:jdbc.properties"/>

    <!-- 阿里的数据库连接池Druid -->
    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
        <property name="username" value="${datasource.username}"/>
        <property name="password" value="${datasource.password}"/>
        <property name="url" value="${datasource.url}"/>
        <property name="driverClassName" value="${datasource.driver}"/>
    </bean>
</beans>
上一篇下一篇

猜你喜欢

热点阅读