一、使用属性文件配置数据源
- 数据库连接信息写在属性文件中
- 采用PropertyPlaceholderConfigurer可以引入属性文件,在Spring配置文件中采用诸如${url}的方式引用属性值
<!-- 引入properties文件 -->
<bean class="org.springframework.beans.factory.config
.PropertyPlaceholderConfigurer">
<property name="location">
<value>classpath:database.properties</value>
</property>
</bean>
<?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:aop="http://www.springframework.org/schema/aop"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.2.xsd">
<!--使用扫描注解注入的包-->
<context:component-scan base-package="cn.gwj"/>
<!-- Spring加载属性配置文件-->
<bean class="org.springframework.beans.factory.config.PreferencesPlaceholderConfigurer">
<property name="location" value="classpath:mysql.properties"/>
</bean>
<!-- 配置数据源、连接池-->
<!-- <bean id="dataSource" class="org.apache.commons.dbcp2.BasicDataSource" destroy-method="close">-->
<!-- <property name="driverClassName" value="com.mysql.cj.jdbc.Driver"/>-->
<!-- <property name="url" value="jdbc:mysql:///smbms?useUnicode=true&charcaterEncoding=utf-8&useSSL=false&serverTimezone=UTC"/>-->
<!-- <property name="username" value="root"/>-->
<!-- <property name="password" value="123"/>-->
<!-- </bean>-->
<bean id="dataSource" class="org.apache.commons.dbcp2.BasicDataSource" destroy-method="close">
<property name="driverClassName" value="${driver}"/>
<property name="url" value="${url}"/>
<property name="username" value="${user}"/>
<property name="password" value="${password}"/>
</bean>
<!-- 配置SqlSessionFactoryBean-->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<!-- 引用数据源组件-->
<property name="dataSource" ref="dataSource"/>
<!-- 引用MyBatis配置文件中的配置-->
<property name="configLocation" value="classpath:mybatis-config.xml"/>
<!-- 配置SQL映射文件信息-->
<property name="mapperLocations" value="classpath:cn/gwj/dao/**/*.xml"/>
<!-- mapperLocations是Resource[]类型-->
<!-- <list>-->
<!-- <value>classpath:cn/gwj/dao/**/*.xml</value>-->
<!-- </list>-->
<!-- </property>-->
</bean>
<!-- 配置业务bean-->
<bean id="userService" class="cn.gwj.service.user.UserServiceImpl"/>
<!-- 配置mapper 映射dao-->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<!-- 指明sqlSessionFactoryBean的名字 可要可不要-->
<!-- 指明工厂sqlSessionFactoryBean的名字-->
<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/>
<!-- 指明接口的包-->
<property name="basePackage" value="cn.gwj.dao"/>
</bean>
<!-- 声明切面类-->
<bean class="cn.gwj.aop.AopLogger"/>
<!-- 开启使用注解驱动切面-->
<aop:aspectj-autoproxy/>
<!-- 定义事务管理器-->
<bean id="dataSourceTransactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"/>
</bean>
<!-- 对注解配置的事务的支持-->
<tx:annotation-driven transaction-manager="dataSourceTransactionManager"/>
</beans>
二、使用JNDI数据源
1.通过JNDI从服务器容器中获取DataSource资源
- 在服务器环境中配置数据源
- 在Spring配置文件引用JNDI资源
<bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean">
<!--通过jndiName指定引用的JNDI数据源名称 -->
<property name="jndiName">
<value>java:comp/env/jdbc/smbms</value>
</property>
</bean>
2.Tomcat配置context.xml
<?xml version='1.0' encoding='utf-8'?>
<Context>
<!-- Default set of monitored resources -->
<WatchedResource>WEB-INF/web.xml</WatchedResource>
<Resource name="jdbc/smbms" auth="Container" type="javax.sql.DataSource"
maxActive="100" maxIdle="30" maxWait="10000" username="root"
password="123456" driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://127.0.0.1:3306/smbms?
useUnicode=true&characterEncoding=utf-8"/>
</Context>