真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

apacheshardingsphere事務(wù)的實(shí)現(xiàn)方法

這篇文章主要講解了“apache shardingsphere 事務(wù)的實(shí)現(xiàn)方法”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“apache shardingsphere 事務(wù)的實(shí)現(xiàn)方法”吧!

城關(guān)網(wǎng)站制作公司哪家好,找成都創(chuàng)新互聯(lián)!從網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、響應(yīng)式網(wǎng)站建設(shè)等網(wǎng)站項(xiàng)目制作,到程序開發(fā),運(yùn)營(yíng)維護(hù)。成都創(chuàng)新互聯(lián)2013年至今到現(xiàn)在10年的時(shí)間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選成都創(chuàng)新互聯(lián)。

  • 本地事務(wù)

    • TransactionTypeHolder.set(TransactionType.LOCAL)

    • connection.setAutoCommit(true)

    • statement.executeUpdate("update user set name='kk' where id = 1");

    • connection.commit() or commit.rollback();

    • 在Threadlocal 里放入事務(wù)類型,默認(rèn)Local ,所以這句可以省略

    • 在ShardingConnection 所有 緩存的真實(shí)Connection上執(zhí)行setAutoCommit(true)

    • 將這個(gè)操作 緩存在 ShardingConnection 的 jdbcMethodInvocations 中

    • 在執(zhí)行過程中,如果需要?jiǎng)?chuàng)建新的真實(shí)Connection,則同樣會(huì)在新的Connection上執(zhí)行 setAutoCommit(true)

    • 在新連接中執(zhí)行 setAutoCommit(true) 是通過 jdbcMethodInvocations 實(shí)現(xiàn)

    • 新的連接同樣會(huì)被緩存起來

    • 提交或者回滾 也會(huì)在ShardingConnection 所有 緩存的真實(shí)Connection上執(zhí)行

    •         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 事務(wù)的實(shí)現(xiàn)方法”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)apache shardingsphere 事務(wù)的實(shí)現(xiàn)方法這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!


網(wǎng)站題目:apacheshardingsphere事務(wù)的實(shí)現(xiàn)方法
本文網(wǎng)址:http://weahome.cn/article/ihpeji.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部