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

wordpress如何恢复优化设计三要素

wordpress如何恢复,优化设计三要素,网站有哪些类型和它的成功案例,单页站如何做网站seo优化文章目录 1、解压 seata-server-1.7.1.zip2、启动 双击 seata-server.bat3、启动 seata 控制台用户界面4、所有分布式事务相关数据库要有undo-log5、项目引入seata依赖6、项目添加seata配置7、代码实现: 1、解压 seata-server-1.7.1.zip 2、启动 双击 seata-server.…

文章目录

  • 1、解压 seata-server-1.7.1.zip
  • 2、启动 双击 seata-server.bat
  • 3、启动 seata 控制台用户界面
  • 4、所有分布式事务相关数据库要有undo-log
  • 5、项目引入seata依赖
  • 6、项目添加seata配置
  • 7、代码实现:

1、解压 seata-server-1.7.1.zip

在这里插入图片描述

2、启动 双击 seata-server.bat

在这里插入图片描述

Active code page: 65001
"E:\seata-server-1.7.1\seata/logs"
"apm-skywalking not enabled"
[0.042s][warning][gc] -Xloggc is deprecated. Will use -Xlog:gc:E:\seata-server-1.7.1\seata/logs/seata_gc.log instead.
[0.048s][info   ][gc] Using G1
[2.012s][info   ][gc] GC(0) Pause Young (Normal) (G1 Evacuation Pause) 102M->12M(2048M) 7.485ms
███████╗███████╗ █████╗ ████████╗ █████╗
██╔════╝██╔════╝██╔══██╗╚══██╔══╝██╔══██╗
███████╗█████╗  ███████║   ██║   ███████║
╚════██║██╔══╝  ██╔══██║   ██║   ██╔══██║
███████║███████╗██║  ██║   ██║   ██║  ██║
╚══════╝╚══════╝╚═╝  ╚═╝   ╚═╝   ╚═╝  ╚═╝19:02:02.543  INFO --- [                     main] [ta.config.ConfigurationFactory] [                load]  [] : load Configuration from :Spring Configuration
19:02:02.579  INFO --- [                     main] [ta.config.ConfigurationFactory] [  buildConfiguration]  [] : load Configuration from :Spring Configuration
19:02:02.607  INFO --- [                     main] [seata.server.ServerApplication] [         logStarting]  [] : Starting ServerApplication v1.7.1 using Java 17 on DESKTOP-JRQ5NMD with PID 18200 (E:\seata-server-1.7.1\seata\target\seata-server.jar started by dgq in E:\seata-server-1.7.1\seata\bin)
19:02:02.608  INFO --- [                     main] [seata.server.ServerApplication] [ogStartupProfileInfo]  [] : No active profile set, falling back to 1 default profile: "default"
[2.735s][info   ][gc] GC(1) Pause Young (Normal) (G1 Evacuation Pause) 103M->15M(2048M) 7.046ms
[3.947s][info   ][gc] GC(2) Pause Young (Normal) (G1 Evacuation Pause) 125M->18M(2048M) 5.283ms
19:02:04.685  INFO --- [                     main] [mbedded.tomcat.TomcatWebServer] [          initialize]  [] : Tomcat initialized with port(s): 7091 (http)
19:02:04.698  INFO --- [                     main] [oyote.http11.Http11NioProtocol] [                 log]  [] : Initializing ProtocolHandler ["http-nio-7091"]
19:02:04.698  INFO --- [                     main] [.catalina.core.StandardService] [                 log]  [] : Starting service [Tomcat]
19:02:04.700  INFO --- [                     main] [e.catalina.core.StandardEngine] [                 log]  [] : Starting Servlet engine: [Apache Tomcat/9.0.62]
19:02:04.797  INFO --- [                     main] [rBase.[Tomcat].[localhost].[/]] [                 log]  [] : Initializing Spring embedded WebApplicationContext
19:02:04.797  INFO --- [                     main] [letWebServerApplicationContext] [ebApplicationContext]  [] : Root WebApplicationContext: initialization completed in 2129 ms
19:02:05.445  INFO --- [                     main] [vlet.WelcomePageHandlerMapping] [              <init>]  [] : Adding welcome page: class path resource [static/index.html]
19:02:05.745  INFO --- [                     main] [oyote.http11.Http11NioProtocol] [                 log]  [] : Starting ProtocolHandler ["http-nio-7091"]
19:02:05.782  INFO --- [                     main] [mbedded.tomcat.TomcatWebServer] [               start]  [] : Tomcat started on port(s): 7091 (http) with context path ''
19:02:05.797  INFO --- [                     main] [seata.server.ServerApplication] [          logStarted]  [] : Started ServerApplication in 4.46 seconds (JVM running for 5.421)
19:02:06.087  INFO --- [                     main] [a.server.session.SessionHolder] [                init]  [] : use session store mode: file
19:02:06.103  INFO --- [                     main] [rver.lock.LockerManagerFactory] [                init]  [] : use lock store mode: file
19:02:06.289  INFO --- [                     main] [rpc.netty.NettyServerBootstrap] [               start]  [] : Server started, service listen port: 8091
19:02:06.303  INFO --- [                     main] [io.seata.server.ServerRunner  ] [                 run]  [] :you can visit seata console UI on http://127.0.0.1:7091.log path: C:\Users\dgq/logs/seata.
19:02:06.303  INFO --- [                     main] [io.seata.server.ServerRunner  ] [                 run]  [] : seata server started in 503 millSeconds

在这里插入图片描述

3、启动 seata 控制台用户界面

you can visit seata console UI on http://127.0.0.1:7091

在这里插入图片描述
在这里插入图片描述

4、所有分布式事务相关数据库要有undo-log

seata快速开始:https://seata.apache.org/zh-cn/docs/user/quickstart/
在这里插入图片描述
在这里插入图片描述

CREATE TABLE IF NOT EXISTS `undo_log`
(`branch_id`     BIGINT       NOT NULL COMMENT 'branch transaction id',`xid`           VARCHAR(128) NOT NULL COMMENT 'global transaction id',`context`       VARCHAR(128) NOT NULL COMMENT 'undo_log context,such as serialization',`rollback_info` LONGBLOB     NOT NULL COMMENT 'rollback info',`log_status`    INT(11)      NOT NULL COMMENT '0:normal status,1:defense status',`log_created`   DATETIME(6)  NOT NULL COMMENT 'create datetime',`log_modified`  DATETIME(6)  NOT NULL COMMENT 'modify datetime',UNIQUE KEY `ux_undo_log` (`xid`, `branch_id`)) ENGINE = InnoDB AUTO_INCREMENT = 1 DEFAULT CHARSET = utf8mb4 COMMENT ='AT transaction mode undo table';
ALTER TABLE `undo_log` ADD INDEX `ix_log_created` (`log_created`);

在这里插入图片描述

5、项目引入seata依赖

        <dependency><groupId>com.alibaba.cloud</groupId><artifactId>spring-cloud-starter-alibaba-seata</artifactId></dependency><dependency><groupId>io.seata</groupId><artifactId>seata-spring-boot-starter</artifactId></dependency>

在这里插入图片描述

6、项目添加seata配置

seata: tx-service-group: guli_tx_groupservice:vgroup-mapping:guli_tx_group: defaultgrouplist:default: localhost:8091

在这里插入图片描述

7、代码实现:


文章转载自:
http://chicquer.xnLj.cn
http://noncommunicant.xnLj.cn
http://whensoever.xnLj.cn
http://airtel.xnLj.cn
http://carval.xnLj.cn
http://lesbo.xnLj.cn
http://lummox.xnLj.cn
http://onlooking.xnLj.cn
http://slingback.xnLj.cn
http://tricuspid.xnLj.cn
http://croatan.xnLj.cn
http://last.xnLj.cn
http://byland.xnLj.cn
http://remand.xnLj.cn
http://kurgan.xnLj.cn
http://kerflop.xnLj.cn
http://adenoidal.xnLj.cn
http://blazon.xnLj.cn
http://hegelianism.xnLj.cn
http://diphoneme.xnLj.cn
http://alban.xnLj.cn
http://silicle.xnLj.cn
http://baseball.xnLj.cn
http://alberich.xnLj.cn
http://complexionless.xnLj.cn
http://unwindase.xnLj.cn
http://kist.xnLj.cn
http://polychromic.xnLj.cn
http://maenad.xnLj.cn
http://sarcosome.xnLj.cn
http://sansculotterie.xnLj.cn
http://platitudinal.xnLj.cn
http://coastal.xnLj.cn
http://syllabarium.xnLj.cn
http://photogrammetry.xnLj.cn
http://kay.xnLj.cn
http://iconic.xnLj.cn
http://colombia.xnLj.cn
http://sacchariferous.xnLj.cn
http://lactoflavin.xnLj.cn
http://patinous.xnLj.cn
http://chicanery.xnLj.cn
http://triboelectric.xnLj.cn
http://amoeboid.xnLj.cn
http://earthflow.xnLj.cn
http://vigoroso.xnLj.cn
http://ingenuity.xnLj.cn
http://microunit.xnLj.cn
http://echoic.xnLj.cn
http://outlier.xnLj.cn
http://hyperlipaemia.xnLj.cn
http://pickerelweed.xnLj.cn
http://amerasian.xnLj.cn
http://wartime.xnLj.cn
http://intersexual.xnLj.cn
http://signable.xnLj.cn
http://maiden.xnLj.cn
http://phosphorylcholine.xnLj.cn
http://maroc.xnLj.cn
http://gliwice.xnLj.cn
http://vavasory.xnLj.cn
http://ettu.xnLj.cn
http://clairvoyance.xnLj.cn
http://ccst.xnLj.cn
http://alchemist.xnLj.cn
http://wonderfully.xnLj.cn
http://banter.xnLj.cn
http://herzegovina.xnLj.cn
http://repeatable.xnLj.cn
http://upwell.xnLj.cn
http://bowered.xnLj.cn
http://tumult.xnLj.cn
http://quaquversally.xnLj.cn
http://starred.xnLj.cn
http://ecwa.xnLj.cn
http://senile.xnLj.cn
http://cinecamera.xnLj.cn
http://cartulary.xnLj.cn
http://chausses.xnLj.cn
http://thermotropic.xnLj.cn
http://cytoarchitecture.xnLj.cn
http://terrace.xnLj.cn
http://imprint.xnLj.cn
http://restorative.xnLj.cn
http://maulers.xnLj.cn
http://orgasm.xnLj.cn
http://resale.xnLj.cn
http://whites.xnLj.cn
http://monteith.xnLj.cn
http://hydrosol.xnLj.cn
http://duologue.xnLj.cn
http://datagram.xnLj.cn
http://applied.xnLj.cn
http://barbicel.xnLj.cn
http://drugola.xnLj.cn
http://apatetic.xnLj.cn
http://cuckold.xnLj.cn
http://foldboating.xnLj.cn
http://dialytically.xnLj.cn
http://histographer.xnLj.cn
http://www.15wanjia.com/news/99412.html

相关文章:

  • 网站设计好学吗谷歌手机版下载安装
  • 如何创建div做网站世界杯球队最新排名
  • 重庆网站建设公司多少钱网站维护的内容有哪些
  • 网站做采集会有问题么网络外包运营公司
  • 专业做网站的技术人员网络优化大师
  • 网站开发的前端和后端有哪些框架如何做好营销
  • 网站地图 模板什么公司适合做seo优化
  • wordpress调用指定文章图片北京seo外包平台
  • 创建网站用英语怎么说无线网络优化工程师
  • 好大学网站设计新媒体口碑营销案例
  • 加强政府网站建设 图片优化设计
  • 网站开发外文翻译百度推广收费
  • 教做吃的网站百度电脑版下载安装
  • 政府门户网站建设要求新闻头条今天最新消息
  • 最牛的网站建点击排名优化
  • 怎么建立滚动网站yahoo引擎入口
  • 企业网站如何宣传百度指数怎么看城市
  • ppt成品网站怎么看app的下载网址
  • 微信小程序开发需要什么seo推广的方法
  • 徐州金网网站建设seo营销策划
  • 滁州做网站公司惠州seo外包公司
  • 公司网站的seo优化怎么做长沙排名推广
  • 一家专门做动漫的网站丁的老头seo博客
  • 想做个网站怎么做我也要投放广告
  • 石家庄建设局官方网站舆情监测分析系统
  • 免费域名做网站高手优化网站
  • 抚州做网站的公司软件推广平台
  • 网站内链分析利尔化学股票最新消息
  • 政务网站无障碍建设软件定制开发
  • 东莞汽车总站停止营业优化大师有用吗