mirror of https://github.com/jeecgboot/jeecg-boot
升级seata到1.7.0;升级dynamic-datasource-spring-boot-starter到3.5.2
parent
ead2cef1f4
commit
1158b0b6e7
|
@ -3,6 +3,11 @@ server:
|
||||||
spring:
|
spring:
|
||||||
application:
|
application:
|
||||||
name: seata-account
|
name: seata-account
|
||||||
|
cloud:
|
||||||
|
nacos:
|
||||||
|
config:
|
||||||
|
import-check:
|
||||||
|
enabled: false
|
||||||
main:
|
main:
|
||||||
allow-bean-definition-overriding: true
|
allow-bean-definition-overriding: true
|
||||||
autoconfigure:
|
autoconfigure:
|
||||||
|
@ -12,9 +17,11 @@ spring:
|
||||||
username: root
|
username: root
|
||||||
password: root
|
password: root
|
||||||
driver-class-name: com.mysql.cj.jdbc.Driver
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
||||||
schema: classpath:sql/schema-account.sql
|
sql:
|
||||||
|
init:
|
||||||
|
schema-locations: classpath:sql/schema-account.sql
|
||||||
seata:
|
seata:
|
||||||
# enable-auto-data-source-proxy: false
|
enable-auto-data-source-proxy: false
|
||||||
service:
|
service:
|
||||||
grouplist:
|
grouplist:
|
||||||
default: 127.0.0.1:8091
|
default: 127.0.0.1:8091
|
||||||
|
@ -22,3 +29,7 @@ seata:
|
||||||
springboot-seata-group: default
|
springboot-seata-group: default
|
||||||
# seata 事务组编号 用于TC集群名
|
# seata 事务组编号 用于TC集群名
|
||||||
tx-service-group: springboot-seata-group
|
tx-service-group: springboot-seata-group
|
||||||
|
|
||||||
|
# 无用配置,为了避免扫码全代码导致启动慢
|
||||||
|
minidao:
|
||||||
|
base-package: org.jeecg.modules.jmreport.*
|
|
@ -3,6 +3,11 @@ server:
|
||||||
spring:
|
spring:
|
||||||
application:
|
application:
|
||||||
name: seata-order
|
name: seata-order
|
||||||
|
cloud:
|
||||||
|
nacos:
|
||||||
|
config:
|
||||||
|
import-check:
|
||||||
|
enabled: false
|
||||||
main:
|
main:
|
||||||
allow-bean-definition-overriding: true
|
allow-bean-definition-overriding: true
|
||||||
autoconfigure:
|
autoconfigure:
|
||||||
|
@ -12,9 +17,11 @@ spring:
|
||||||
url: jdbc:mysql://127.0.0.1:3306/jeecg_order?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useSSL=false
|
url: jdbc:mysql://127.0.0.1:3306/jeecg_order?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useSSL=false
|
||||||
username: root
|
username: root
|
||||||
password: root
|
password: root
|
||||||
schema: classpath:sql/schema-order.sql
|
sql:
|
||||||
|
init:
|
||||||
|
schema-locations: classpath:sql/schema-order.sql
|
||||||
seata:
|
seata:
|
||||||
# enable-auto-data-source-proxy: false
|
enable-auto-data-source-proxy: false
|
||||||
service:
|
service:
|
||||||
grouplist:
|
grouplist:
|
||||||
default: 127.0.0.1:8091
|
default: 127.0.0.1:8091
|
||||||
|
@ -22,3 +29,7 @@ seata:
|
||||||
springboot-seata-group: default
|
springboot-seata-group: default
|
||||||
# seata 事务组编号 用于TC集群名
|
# seata 事务组编号 用于TC集群名
|
||||||
tx-service-group: springboot-seata-group
|
tx-service-group: springboot-seata-group
|
||||||
|
|
||||||
|
# 无用配置,为了避免扫码全代码导致启动慢
|
||||||
|
minidao:
|
||||||
|
base-package: org.jeecg.modules.jmreport.*
|
|
@ -3,6 +3,11 @@ server:
|
||||||
spring:
|
spring:
|
||||||
application:
|
application:
|
||||||
name: seata-product
|
name: seata-product
|
||||||
|
cloud:
|
||||||
|
nacos:
|
||||||
|
config:
|
||||||
|
import-check:
|
||||||
|
enabled: false
|
||||||
main:
|
main:
|
||||||
allow-bean-definition-overriding: true
|
allow-bean-definition-overriding: true
|
||||||
autoconfigure:
|
autoconfigure:
|
||||||
|
@ -12,9 +17,11 @@ spring:
|
||||||
url: jdbc:mysql://127.0.0.1:3306/jeecg_product?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useSSL=false
|
url: jdbc:mysql://127.0.0.1:3306/jeecg_product?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useSSL=false
|
||||||
username: root
|
username: root
|
||||||
password: root
|
password: root
|
||||||
schema: classpath:sql/schema-product.sql
|
sql:
|
||||||
|
init:
|
||||||
|
schema-locations: classpath:sql/schema-product.sql
|
||||||
seata:
|
seata:
|
||||||
# enable-auto-data-source-proxy: false
|
enable-auto-data-source-proxy: false
|
||||||
service:
|
service:
|
||||||
grouplist:
|
grouplist:
|
||||||
default: 127.0.0.1:8091
|
default: 127.0.0.1:8091
|
||||||
|
@ -22,3 +29,7 @@ seata:
|
||||||
springboot-seata-group: default
|
springboot-seata-group: default
|
||||||
# seata 事务组编号 用于TC集群名
|
# seata 事务组编号 用于TC集群名
|
||||||
tx-service-group: springboot-seata-group
|
tx-service-group: springboot-seata-group
|
||||||
|
|
||||||
|
# 无用配置,为了避免扫码全代码导致启动慢
|
||||||
|
minidao:
|
||||||
|
base-package: org.jeecg.modules.jmreport.*
|
|
@ -24,7 +24,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jeecgframework.boot</groupId>
|
<groupId>org.jeecgframework.boot</groupId>
|
||||||
<artifactId>jeecg-boot-starter-seata</artifactId>
|
<artifactId>jeecg-boot-starter-seata</artifactId>
|
||||||
<version>${jeecgboot.version}</version>
|
<version>3.8.2-RC</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -37,7 +37,7 @@
|
||||||
<spring-cloud.version>2021.0.8</spring-cloud.version>
|
<spring-cloud.version>2021.0.8</spring-cloud.version>
|
||||||
<spring-cloud-alibaba.version>2021.0.6.2</spring-cloud-alibaba.version>
|
<spring-cloud-alibaba.version>2021.0.6.2</spring-cloud-alibaba.version>
|
||||||
<alibaba.nacos.version>2.0.4</alibaba.nacos.version>
|
<alibaba.nacos.version>2.0.4</alibaba.nacos.version>
|
||||||
<seata.version>1.5.2</seata.version>
|
<seata.version>1.7.0</seata.version>
|
||||||
|
|
||||||
<xxl-job-core.version>2.4.1</xxl-job-core.version>
|
<xxl-job-core.version>2.4.1</xxl-job-core.version>
|
||||||
<fastjson.version>2.0.57</fastjson.version>
|
<fastjson.version>2.0.57</fastjson.version>
|
||||||
|
@ -240,7 +240,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jeecgframework.boot</groupId>
|
<groupId>org.jeecgframework.boot</groupId>
|
||||||
<artifactId>jeecg-boot-starter-shardingsphere</artifactId>
|
<artifactId>jeecg-boot-starter-shardingsphere</artifactId>
|
||||||
<version>${jeecgboot.version}</version>
|
<version>3.8.2-RC</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.hibernate</groupId>
|
<groupId>org.hibernate</groupId>
|
||||||
|
|
Loading…
Reference in New Issue