<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd
">
<!-- 配置讀取 db.properties 數據庫配置文件 -->
<context:property-placeholder location="classpath:db.properties"/>
<!-- 配置數據源鏈接池 -->
<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init" destroy-method="close">
<property name="driverClassName" value="${jdbc.driverClassName}"/>
<property name="url" value="${jdbc.url}"/>
<property name="username" value="${jdbc.username}"/>
<property name="password" value="${jdbc.password}"/>
<property name="maxActive" value="${jdbc.maxActive}"/>
</bean>
<!--
配置MyBatis框架的 SqlSessionFactoryBean 類,建立
SqlSessionFactory 工廠對象
-->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<!-- 1.注入數據源 -->
<property name="dataSource" ref="dataSource"/>
<!-- 2.配置映射文件 -->
<property name="mapperLocations">
<array>
<!-- <value>classpath:cn/zj/mybatis/mapper/UserMapper.xml</value> -->
<!-- 可使用通配符 * 讀取 目錄下面全部的配置文件 -->
<value>classpath:cn/zj/mybatis/mapper/*Mapper.xml</value>
</array>
</property>
<!-- 3. 配置別名使用包掃描 -->
<property name="typeAliasesPackage" value="cn.zj.mybatis.pojo"/>
<!-- 4.讀取mybat-config.xml配置文件,此配置文件可能還會配一些mybatis框架的
其餘個性化配置
實際項目開發可能不用配置
-->
<property name="configLocation" value="classpath:mybatis-config.xml"/>
</bean>
</beans>
|