大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
这篇文章主要讲解了“apache shardingsphere 事务的实现方法”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“apache shardingsphere 事务的实现方法”吧!
城关网站制作公司哪家好,找成都创新互联!从网页设计、网站建设、微信开发、APP开发、响应式网站建设等网站项目制作,到程序开发,运营维护。成都创新互联2013年至今到现在10年的时间,我们拥有了丰富的建站经验和运维经验,来保证我们的工作的顺利进行。专注于网站建设就选成都创新互联。
本地事务
TransactionTypeHolder.set(TransactionType.LOCAL)
connection.setAutoCommit(true)
statement.executeUpdate("update user set name='kk' where id = 1");
connection.commit() or commit.rollback();
在Threadlocal 里放入事务类型,默认Local ,所以这句可以省略
在ShardingConnection 所有 缓存的真实Connection上执行setAutoCommit(true)
将这个操作 缓存在 ShardingConnection 的 jdbcMethodInvocations 中
在执行过程中,如果需要创建新的真实Connection,则同样会在新的Connection上执行 setAutoCommit(true)
在新连接中执行 setAutoCommit(true) 是通过 jdbcMethodInvocations 实现
新的连接同样会被缓存起来
提交或者回滚 也会在ShardingConnection 所有 缓存的真实Connection上执行
DataSource dataSource = ShardingDataSourceFactory.createDataSource(datasourceMap, shardingRuleConfig, pros); Connection connection = null; try { connection = dataSource.getConnection(); connection.setAutoCommit(false); Statement statement = connection.createStatement(); statement.executeUpdate("update user set name = 'meichaofeng' where ex_id = 201"); connection.commit(); statement.close(); connection.close(); } catch (SQLException e) { try { connection.rollback(); } catch (SQLException e1) { e1.printStackTrace(); } }
感谢各位的阅读,以上就是“apache shardingsphere 事务的实现方法”的内容了,经过本文的学习后,相信大家对apache shardingsphere 事务的实现方法这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是创新互联,小编将为大家推送更多相关知识点的文章,欢迎关注!