Spring集成JDBC配置文件

Posted 呦,你是个老母猪呦!

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring集成JDBC配置文件相关的知识,希望对你有一定的参考价值。

<?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:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.3.xsd">

    <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://localhost:3306/test?serverTimezone=GMT" />
        <property name="username" value="root" />
        <property name="password" value="zhangpn" />
        <property name="initialSize" value="1" />
        <property name="maxTotal" value="20" />
        <property name="maxIdle" value="2" />
        <property name="minIdle" value="1" />
    </bean>
    <bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource"></property>
    </bean>
    <tx:annotation-driven transaction-manager="txManager"/>
</beans>

dbcp创建一个数据源

创建一个DataSourceTransactionManager数据源事务管理员

声明使用注解方式使用数据源事务管理员

在Service中加上@Transaction注解,OK。

以上是关于Spring集成JDBC配置文件的主要内容,如果未能解决你的问题,请参考以下文章

spring 集成 mybatis 和 redis 的配置文件

spring 集成 mybatis 和 redis 的配置文件

spring 集成 mybatis 和 redis 的配置文件

SpringBoot 学习笔记 -- [spring Boot配置文件之YAML格式, springBoot自动配置浅入,springboot集成JDBC]

使用 Spring Boot 在单元测试中配置集成测试或使用 Spring JDBC?

spring集成mybatis