千家信息网

spring+shardingjdbc+Atomikos分布式事务配置是什么

发表于:2024-11-19 作者:千家信息网编辑
千家信息网最后更新 2024年11月19日,本篇文章给大家分享的是有关spring+shardingjdbc+Atomikos分布式事务配置是什么,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一
千家信息网最后更新 2024年11月19日spring+shardingjdbc+Atomikos分布式事务配置是什么

本篇文章给大家分享的是有关spring+shardingjdbc+Atomikos分布式事务配置是什么,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。

分表和其他表在一个库里,满足分布式事务,

pom配置:

    org.apache.shardingsphere    sharding-jdbc-spring-namespace    4.0.0-RC1    org.apache.shardingsphere    sharding-jdbc-core    4.0.0-RC1    org.apache.shardingsphere    sharding-transaction-xa-core    4.0.0-RC1

数据源配置:

                                jdbc:mysql://${jdbc.host}/${jdbc.database}            ${jdbc.username}            ${jdbc.password}                                            
                                    

分别为两个数据源配上sqlSessionFactory和MapperScannerConfigurer(为了省事只配了一个)

                        

分布式事务配置:

                

分表策略:

public final class TableShardingAlgorithm implements PreciseShardingAlgorithm {    @Override    public String doSharding(final Collection availableTargetNames, final PreciseShardingValue shardingValue) {for (String each : availableTargetNames) {if (each.endsWith(shardingValue.getValue() % 2 + "")) {return each;            }        }throw new UnsupportedOperationException();    }}

以上就是spring+shardingjdbc+Atomikos分布式事务配置是什么,小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注行业资讯频道。

0