Squashed commit of the following:

升级seata到1.7.0;升级dynamic-datasource-spring-boot-starter到3.5.2
    支持多字段默认排序defSort数组、解决多列排序无效 #8659
    支持多字段默认排序defSort数组
    提供JeecgBoot 运行环境python检查脚本
    提供jeecgboot-oracle11g.dmp
This commit is contained in:
JEECG
2025-08-12 09:43:20 +08:00
parent e10df20e98
commit 4acd5b3464
13 changed files with 400 additions and 41 deletions

View File

@ -12,6 +12,11 @@ spring:
enabled: false
application:
name: seata-account
cloud:
nacos:
config:
import-check:
enabled: false
main:
allow-bean-definition-overriding: true
autoconfigure:
@ -21,18 +26,19 @@ spring:
username: root
password: root
driver-class-name: com.mysql.cj.jdbc.Driver
schema: classpath:sql/schema-account.sql
cloud:
nacos:
config:
import-check:
enabled: false
sql:
init:
schema-locations: classpath:sql/schema-account.sql
seata:
# enable-auto-data-source-proxy: true
enable-auto-data-source-proxy: false
service:
grouplist:
default: 127.0.0.1:8091
vgroup-mapping:
springboot-seata-group: default
# seata 事务组编号 用于TC集群名
tx-service-group: springboot-seata-group
tx-service-group: springboot-seata-group
# 无用配置,为了避免扫码全代码导致启动慢
minidao:
base-package: org.jeecg.modules.jmreport.*

View File

@ -12,6 +12,11 @@ spring:
enabled: false
application:
name: seata-order
cloud:
nacos:
config:
import-check:
enabled: false
main:
allow-bean-definition-overriding: true
autoconfigure:
@ -21,18 +26,19 @@ spring:
url: jdbc:mysql://127.0.0.1:3306/jeecg_order?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useSSL=false
username: root
password: root
schema: classpath:sql/schema-order.sql
cloud:
nacos:
config:
import-check:
enabled: false
sql:
init:
schema-locations: classpath:sql/schema-order.sql
seata:
# enable-auto-data-source-proxy: false
enable-auto-data-source-proxy: false
service:
grouplist:
default: 127.0.0.1:8091
vgroup-mapping:
springboot-seata-group: default
# seata 事务组编号 用于TC集群名
tx-service-group: springboot-seata-group
tx-service-group: springboot-seata-group
# 无用配置,为了避免扫码全代码导致启动慢
minidao:
base-package: org.jeecg.modules.jmreport.*

View File

@ -1,17 +1,13 @@
server:
port: 5003
spring:
data:
redis:
##redis 单机环境配置
host: localhost
port: 6379
database: 0
password:
ssl:
enabled: false
application:
name: seata-product
cloud:
nacos:
config:
import-check:
enabled: false
main:
allow-bean-definition-overriding: true
autoconfigure:
@ -21,18 +17,19 @@ spring:
url: jdbc:mysql://127.0.0.1:3306/jeecg_product?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useSSL=false
username: root
password: root
schema: classpath:sql/schema-product.sql
cloud:
nacos:
config:
import-check:
enabled: false
sql:
init:
schema-locations: classpath:sql/schema-product.sql
seata:
# enable-auto-data-source-proxy: false
enable-auto-data-source-proxy: false
service:
grouplist:
default: 127.0.0.1:8091
vgroup-mapping:
springboot-seata-group: default
# seata 事务组编号 用于TC集群名
tx-service-group: springboot-seata-group
tx-service-group: springboot-seata-group
# 无用配置,为了避免扫码全代码导致启动慢
minidao:
base-package: org.jeecg.modules.jmreport.*