1 <?xml version="1.0" encoding="UTF-8"?> 2 <beans xmlns="http://www.springframework.org/schema/beans" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 4 xmlns:context="http://www.springframework.org/schema/context" 5 xsi:schemaLocation="http://www.springframework.org/schema/beans 6 http://www.springframework.org/schema/beans/spring-beans.xsd 7 http://www.springframework.org/schema/context 8 http://www.springframework.org/schema/context/spring-context.xsd"> 9 <!-- 配置整合mybatis过程 --> 10 <!-- 1.配置数据库相关参数properties的属性:${url} --> 11 <context:property-placeholder location="classpath:jdbc.properties"/> 12 13 <!-- 2.配置数据库连接池 --> 14 <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"> 15 <!--配置连接池属性 --> 16 <property name="driverClass" value="${jdbc.driver}" /> 17 <property name="jdbcUrl" value="${jdbc.url}" /> 18 <property name="user" value="${jdbc.username}" /> 19 <property name="password" value="${jdbc.password}" /> 20 <!-- c3p0数据源的私有属性 --> 21 <property name="maxPoolSize" value="30" /> 22 <property name="minPoolSize" value="30" /> 23 <!-- 关闭连接后,不自动提交 --> 24 <property name="autoCommitOnClose" value="false"/> 25 <!-- 获取连接超时时间 --> 26 <property name="checkoutTimeout" value="10000" /> 27 <!-- 获取连接失败,重试次数 --> 28 <property name="acquireIncrement" value="2" /> 29 </bean> 30 31 <!--3. 配置sqlSessionFactory对象 --> 32 <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> 33 <!-- 注入数据库连接池 ,这里为什么是ref?因为dataSource需要的是一个对象--> 34 <property name="dataSource" ref="dataSource" /> 35 <!-- 扫描entity包,使用别名(实体类所在的包) --> 36 <property name="typeAliasesPackage" value="com.imooc.o2o.entity" /> 37 <!-- 配置mybatis全局配置文件:mybatis-config.xml --> 38 <property name="configLocation" value="classpath:mybatis-config.xml" /> 39 <!-- 扫描sql配置文件:mapper需要的xml文件 --> 40 <property name="mapperLocations" value="classpath:mapper/*.xml" /> 41 </bean> 42 43 <!-- 4.配置扫描DAO接口包,动态实现DAO接口,注入到spring容器中 --> 44 <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer" > 45 <!-- 注入sqlSessionFactory对象,这里为什么是value?因为sqlSessionFactoryBeanName需要的是一个字符串String --> 46 <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" /> 47 <property name="basePackage" value="com.imooc.o2o.dao" /> 48 </bean> 49 </beans>
原文地址:https://www.cnblogs.com/shitulaoma/p/12391387.html
时间: 2024-11-09 01:02:36