applicationContext-dao.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <beans xmlns="http://www.springframework.org/schema/beans"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
  3. xmlns:context="http://www.springframework.org/schema/context"
  4. xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans
  6. http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
  7. http://www.springframework.org/schema/mvc
  8. http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
  9. http://www.springframework.org/schema/context
  10. http://www.springframework.org/schema/context/spring-context-3.2.xsd
  11. http://www.springframework.org/schema/aop
  12. http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
  13. http://www.springframework.org/schema/tx
  14. http://www.springframework.org/schema/tx/spring-tx-3.2.xsd ">
  15. <!-- 加载db.properties文件中的内容,db.properties文件中的key要有一定的特殊规则 -->
  16. <context:property-placeholder location="classpath:db.properties"/>
  17. <!-- 配置数据源,使用dbcp连接池 -->
  18. <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
  19. <property name="driverClassName" value="${jdbc.driver}"/>
  20. <property name="url" value="${jdbc.url}"/>
  21. <property name="username" value="${jdbc.username}"/>
  22. <property name="password" value="${jdbc.password}"/>
  23. <property name="maxActive" value="30"/>
  24. <property name="maxIdle" value="5"/>
  25. </bean>
  26. <!-- 配置SqlSessionFactory -->
  27. <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
  28. <!-- 数据源 -->
  29. <property name="dataSource" ref="dataSource"/>
  30. <!-- 加载mybatis的全局配置文件 -->
  31. <property name="configLocation" value="classpath:mybatis/sqlMapConfig.xml" />
  32. </bean>
  33. <!-- 配置Mapper扫描器 -->
  34. <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
  35. <!-- 扫描包路径,如果需要扫描多个包中间用半角逗号隔开 -->
  36. <property name="basePackage" value="com.mapper"/>
  37. <!-- 这边不能使用ref="sqlSessionFactory"原因是因为上面加载配置文件导致这边引用会报错 -->
  38. <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" />
  39. </bean>
  40. </beans>