当前位置: 首页 > news >正文

怎么做关不掉的网站北京做网站建设价格低

怎么做关不掉的网站,北京做网站建设价格低,权重查询入口,怎么搭建国外网络在现代的微服务架构中#xff0c;随着业务系统的不断拆分和模块化#xff0c;分布式事务成为一个重要的挑战。为了解决微服务架构下的分布式事务问题#xff0c;Seata应运而生。Seata#xff08;Simple Extensible Autonomous Transaction Architecture#xff09;是一款开…在现代的微服务架构中随着业务系统的不断拆分和模块化分布式事务成为一个重要的挑战。为了解决微服务架构下的分布式事务问题Seata应运而生。SeataSimple Extensible Autonomous Transaction Architecture是一款开源的分布式事务解决方案旨在为微服务架构提供高效、简单的分布式事务服务。本文将详细介绍Seata的概念、原理、使用方式并为初学者提供详细的上手指南。 一、Seata的基本概念 1. 什么是Seata Seata 是阿里巴巴开源的一款分布式事务解决方案最初名为Fescar后更名为Seata。Seata通过提供一整套分布式事务的处理方案帮助开发者在微服务架构下轻松实现分布式事务的管理。 2. Seata的核心组件 Transaction Coordinator (TC)事务协调器负责维护全局事务的状态协调并驱动全局事务的提交和回滚。Transaction Manager (TM)事务管理器负责开启全局事务提交或回滚全局事务。Resource Manager (RM)资源管理器负责管理分支事务注册分支事务并最终驱动分支事务提交或回滚。 二、Seata的工作原理 Seata 使用了一种称为“AT模式”Automatic Transaction的事务模型。其工作流程如下 全局事务的开启 在TM中开启一个全局事务生成一个全局事务IDXID。 业务操作 在全局事务的上下文中进行业务操作。每个微服务在执行数据库操作时会生成相应的分支事务并将分支事务注册到TC。 全局事务的提交/回滚 当业务操作完成后由TM向TC发起全局事务的提交或回滚请求。TC根据全局事务的状态通知各个RM进行相应的分支事务提交或回滚操作。 三、Seata的使用方式 1. 环境搭建 1下载和安装Seata Server 你可以从Seata的GitHub仓库下载最新的Server版本。下载完成后解压文件并进入解压后的目录。 2配置文件修改 在conf目录下有多个配置文件需要根据实际情况进行修改如registry.conf和file.conf。registry.conf用于配置注册中心和配置中心file.conf用于配置TC的存储。 示例registry.conf registry {type filefile {name file.conf} }config {type filefile {name file.conf} }示例file.conf store {mode filefile {dir sessionStore} }3启动Seata Server 在bin目录下运行以下命令启动Seata Server sh ./seata-server.sh2. 集成Seata到Spring Boot项目 1引入依赖 在pom.xml中添加Seata的依赖 dependencygroupIdio.seata/groupIdartifactIdseata-all/artifactIdversion1.4.2/version !-- 请根据最新版本进行替换 -- /dependency2配置文件 在application.yml中添加Seata相关配置 spring:cloud:alibaba:seata:tx-service-group: my_tx_group # 自定义事务分组名seata:registry:type: nacos # 使用的注册中心类型nacos:server-addr: 127.0.0.1:8848 # 注册中心地址config:type: nacos # 使用的配置中心类型nacos:server-addr: 127.0.0.1:8848 # 配置中心地址3配置数据源代理 在Spring Boot项目中配置Seata的数据源代理 import io.seata.rm.datasource.DataSourceProxy; import com.zaxxer.hikari.HikariDataSource;import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration;Configuration public class DataSourceConfiguration {Beanpublic DataSourceProxy dataSource(HikariDataSource hikariDataSource) {return new DataSourceProxy(hikariDataSource);} }4注解使用 在需要开启分布式事务的方法上使用GlobalTransactional注解 import io.seata.spring.annotation.GlobalTransactional; import org.springframework.stereotype.Service;Service public class MyService {GlobalTransactionalpublic void myBusinessMethod() {// 业务逻辑} }3. 使用示例 假设我们有两个微服务分别为OrderService和AccountService它们分别进行订单创建和账户扣款操作。我们希望这两个操作在一个全局事务中进行。 1OrderService OrderService中需要调用AccountService的扣款接口并将这两个操作纳入一个全局事务。 OrderService的代码示例如下 import com.example.order.feign.AccountFeignClient; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RestController; import io.seata.spring.annotation.GlobalTransactional;RestController public class OrderController {Autowiredprivate AccountFeignClient accountFeignClient;PostMapping(/createOrder)GlobalTransactionalpublic String createOrder(RequestBody OrderRequest orderRequest) {// 创建订单逻辑// ...// 调用AccountService扣款accountFeignClient.decreaseBalance(orderRequest.getUserId(), orderRequest.getAmount());return Order created successfully;} }2AccountService AccountService中实现扣款逻辑并确保操作的原子性。 AccountService的代码示例如下 import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.jdbc.core.JdbcTemplate;RestController public class AccountController {Autowiredprivate JdbcTemplate jdbcTemplate;PostMapping(/decreaseBalance)public String decreaseBalance(RequestParam(userId) String userId, RequestParam(amount) Double amount) {String sql UPDATE account SET balance balance - ? WHERE user_id ?;jdbcTemplate.update(sql, amount, userId);return Balance decreased successfully;} }四、常见问题和解决方案 1. Seata Server连接问题 如果Seata Server无法连接到注册中心或配置中心请检查以下几点 确认registry.conf和file.conf中的配置是否正确。确认注册中心和配置中心服务是否启动并正常运行。 2. 数据源代理配置 确保数据源代理配置正确使用DataSourceProxy代理数据源。同时确保Seata客户端和Server的版本匹配以避免兼容性问题。 3. 事务注解生效问题 确保在需要开启事务的方法上使用了GlobalTransactional注解并且Spring的AOP配置正确。如果事务注解没有生效可能是因为AOP配置不正确或者Spring Boot的自动配置不完整。 五、总结 通过本文的讲解我们详细介绍了Seata的基本概念、工作原理、使用方式及常见问题的解决方案。Seata在微服务架构下提供了高效、简单的分布式事务解决方案帮助开发者轻松实现全局事务管理。希望通过这篇详细的讲解能够帮助初学者全面掌握Seata并在实际项目中得心应手地使用它。 如果你对Seata还有其他疑问或有更多的使用技巧欢迎在评论区分享和讨论。记住编程不仅仅是写代码更是不断学习和交流的过程。Happy coding!
文章转载自:
http://www.morning.ryxdf.cn.gov.cn.ryxdf.cn
http://www.morning.ncfky.cn.gov.cn.ncfky.cn
http://www.morning.blqsr.cn.gov.cn.blqsr.cn
http://www.morning.dmnqh.cn.gov.cn.dmnqh.cn
http://www.morning.nzmhk.cn.gov.cn.nzmhk.cn
http://www.morning.ltksw.cn.gov.cn.ltksw.cn
http://www.morning.knryp.cn.gov.cn.knryp.cn
http://www.morning.tbjb.cn.gov.cn.tbjb.cn
http://www.morning.mcjp.cn.gov.cn.mcjp.cn
http://www.morning.dodoking.cn.gov.cn.dodoking.cn
http://www.morning.jxlnr.cn.gov.cn.jxlnr.cn
http://www.morning.wxqmc.cn.gov.cn.wxqmc.cn
http://www.morning.xhsxj.cn.gov.cn.xhsxj.cn
http://www.morning.wgqtj.cn.gov.cn.wgqtj.cn
http://www.morning.rnzgf.cn.gov.cn.rnzgf.cn
http://www.morning.rfycj.cn.gov.cn.rfycj.cn
http://www.morning.wmdbn.cn.gov.cn.wmdbn.cn
http://www.morning.qtwd.cn.gov.cn.qtwd.cn
http://www.morning.mjzcp.cn.gov.cn.mjzcp.cn
http://www.morning.trrpb.cn.gov.cn.trrpb.cn
http://www.morning.rhqr.cn.gov.cn.rhqr.cn
http://www.morning.cldgh.cn.gov.cn.cldgh.cn
http://www.morning.homayy.com.gov.cn.homayy.com
http://www.morning.drmbh.cn.gov.cn.drmbh.cn
http://www.morning.gl-group.cn.gov.cn.gl-group.cn
http://www.morning.qmncj.cn.gov.cn.qmncj.cn
http://www.morning.jcbjy.cn.gov.cn.jcbjy.cn
http://www.morning.dfygx.cn.gov.cn.dfygx.cn
http://www.morning.pghry.cn.gov.cn.pghry.cn
http://www.morning.bhdyr.cn.gov.cn.bhdyr.cn
http://www.morning.rhmpk.cn.gov.cn.rhmpk.cn
http://www.morning.rdkt.cn.gov.cn.rdkt.cn
http://www.morning.rhsg.cn.gov.cn.rhsg.cn
http://www.morning.mdtfh.cn.gov.cn.mdtfh.cn
http://www.morning.ypjjh.cn.gov.cn.ypjjh.cn
http://www.morning.jxgyg.cn.gov.cn.jxgyg.cn
http://www.morning.tplht.cn.gov.cn.tplht.cn
http://www.morning.kkjlz.cn.gov.cn.kkjlz.cn
http://www.morning.lchtb.cn.gov.cn.lchtb.cn
http://www.morning.gtmgl.cn.gov.cn.gtmgl.cn
http://www.morning.zwmjq.cn.gov.cn.zwmjq.cn
http://www.morning.btns.cn.gov.cn.btns.cn
http://www.morning.bxqtq.cn.gov.cn.bxqtq.cn
http://www.morning.pmwhj.cn.gov.cn.pmwhj.cn
http://www.morning.jqpq.cn.gov.cn.jqpq.cn
http://www.morning.fmqw.cn.gov.cn.fmqw.cn
http://www.morning.xtrzh.cn.gov.cn.xtrzh.cn
http://www.morning.hknk.cn.gov.cn.hknk.cn
http://www.morning.rjqtq.cn.gov.cn.rjqtq.cn
http://www.morning.bkfdf.cn.gov.cn.bkfdf.cn
http://www.morning.bkkgt.cn.gov.cn.bkkgt.cn
http://www.morning.pcgrq.cn.gov.cn.pcgrq.cn
http://www.morning.qcwrm.cn.gov.cn.qcwrm.cn
http://www.morning.rcqyk.cn.gov.cn.rcqyk.cn
http://www.morning.wsnbg.cn.gov.cn.wsnbg.cn
http://www.morning.zpstm.cn.gov.cn.zpstm.cn
http://www.morning.msfqt.cn.gov.cn.msfqt.cn
http://www.morning.zfqr.cn.gov.cn.zfqr.cn
http://www.morning.rnqnp.cn.gov.cn.rnqnp.cn
http://www.morning.htqrh.cn.gov.cn.htqrh.cn
http://www.morning.bbxbh.cn.gov.cn.bbxbh.cn
http://www.morning.cytr.cn.gov.cn.cytr.cn
http://www.morning.tdmgs.cn.gov.cn.tdmgs.cn
http://www.morning.rfpxq.cn.gov.cn.rfpxq.cn
http://www.morning.ymwny.cn.gov.cn.ymwny.cn
http://www.morning.rpwm.cn.gov.cn.rpwm.cn
http://www.morning.qmkyp.cn.gov.cn.qmkyp.cn
http://www.morning.qwpyf.cn.gov.cn.qwpyf.cn
http://www.morning.lhzqn.cn.gov.cn.lhzqn.cn
http://www.morning.dlmqn.cn.gov.cn.dlmqn.cn
http://www.morning.pwksz.cn.gov.cn.pwksz.cn
http://www.morning.frpm.cn.gov.cn.frpm.cn
http://www.morning.mfbzr.cn.gov.cn.mfbzr.cn
http://www.morning.smggx.cn.gov.cn.smggx.cn
http://www.morning.lfttb.cn.gov.cn.lfttb.cn
http://www.morning.rfwgg.cn.gov.cn.rfwgg.cn
http://www.morning.qnhpq.cn.gov.cn.qnhpq.cn
http://www.morning.skcmt.cn.gov.cn.skcmt.cn
http://www.morning.pbknh.cn.gov.cn.pbknh.cn
http://www.morning.dnzyx.cn.gov.cn.dnzyx.cn
http://www.tj-hxxt.cn/news/247583.html

相关文章:

  • ae做动画教程网站源码之家免费
  • 优秀作文大全网站上海网站建设费用多少钱
  • 国外主流网站开发技术群辉服务器建设的网站
  • 广州市外贸网站建设服务机构沈阳网站设计公司
  • 网站建设制作定制重庆新闻联播
  • 找人做一个网站需要花多少钱wordpress 附件下载
  • 东圃做网站的公司网站开发了下载文件需要
  • 网站中的表单怎么做招商网址
  • 金华做企业网站公司做网站应该注意哪些方面
  • 建设一个网站需要些什么材料广告网站建设与制作
  • 展示型网站建设的标准杭州p2p网站建设
  • 网站 支持建设单位企业网站一定要备案吗
  • 凌河建设网站宿州专业网站建设公司
  • 湖南建设长沙网站建设价格上海网络企业优化公司
  • 网站后台维护系统客户管理系统官网
  • 学校网站建设工作高端品牌名称
  • 购买一个网站域名需要多少钱手机网站设计手机壳尺寸一览表
  • 三合一网站开发有什么区别搜索引擎的两个基本方法
  • 开发网站公司名称传奇版本网页游戏
  • 不同网站建设特点河北网站制作报价
  • 搭建网站 在线浏览功能邯郸网站建设
  • 漫画门户网站怎么做的建设管理网站首页
  • 哪个网站找住宿的便宜小程序开发文档api
  • 贵港公司做网站网站建设费 大创
  • 任丘做网站价格0基础学网站建设
  • 重庆一品建设集团有限公司网站江门网页建站模板
  • 推广型网站开发公司公司网站开发找哪家
  • 那里有做网站一个虚拟主机怎么做多个网站
  • 华为网站搭建wordpress搜索插件
  • 镇江网站排名优化费用视频播放网站开发的报告