From 08612d5bfa12af224c301e16a601754e412ba576 Mon Sep 17 00:00:00 2001 From: JEECG <445654970@qq.com> Date: Thu, 22 May 2025 11:12:27 +0800 Subject: [PATCH 1/4] =?UTF-8?q?springboot3=E5=88=86=E6=94=AF=E7=9A=84redis?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E6=A0=BC=E5=BC=8F=E6=94=B9=E4=BA=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/application-dm8.yml | 11 ++++++----- .../src/main/resources/application-kingbase8.yml | 11 ++++++----- .../src/main/resources/application-prod.yml | 2 +- .../src/main/resources/application-test.yml | 11 ++++++----- 4 files changed, 19 insertions(+), 16 deletions(-) diff --git a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-dm8.yml b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-dm8.yml index 21ad8a7ba..d4313720a 100644 --- a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-dm8.yml +++ b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-dm8.yml @@ -134,11 +134,12 @@ spring: password: SYSDBA driverClassName: dm.jdbc.driver.DmDriver #redis 配置 - redis: - database: 0 - host: 127.0.0.1 - port: 6379 - password: '' + data: + redis: + database: 0 + host: 127.0.0.1 + port: 6379 + password: '' #mybatis plus 设置 mybatis-plus: mapper-locations: classpath*:org/jeecg/**/xml/*Mapper.xml diff --git a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-kingbase8.yml b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-kingbase8.yml index 48b57ed1a..27ae27db8 100644 --- a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-kingbase8.yml +++ b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-kingbase8.yml @@ -148,11 +148,12 @@ spring: password: system driver-class-name: com.kingbase8.Driver #redis 配置 - redis: - database: 0 - host: 127.0.0.1 - port: 6379 - password: '' + data: + redis: + database: 0 + host: 127.0.0.1 + port: 6379 + password: '' #mybatis plus 设置 mybatis-plus: mapper-locations: classpath*:org/jeecg/**/xml/*Mapper.xml diff --git a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-prod.yml b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-prod.yml index 32842df55..e4efe96d5 100644 --- a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-prod.yml +++ b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-prod.yml @@ -22,7 +22,7 @@ management: spring: flyway: # 是否启用flyway - enabled: true + enabled: false # 是否关闭要清除已有库下的表功能,生产环境必须为true,否则会删库,非常重要!!! clean-disabled: true servlet: diff --git a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-test.yml b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-test.yml index 7213a51c4..0a5df12a7 100644 --- a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-test.yml +++ b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-test.yml @@ -155,11 +155,12 @@ spring: #password: root #driver-class-name: com.mysql.cj.jdbc.Driver #redis 配置 - redis: - database: 0 - host: 192.168.1.188 - port: 6379 - password: '' + data: + redis: + database: 0 + host: 127.0.0.1 + port: 6379 + password: '' #mybatis plus 设置 mybatis-plus: mapper-locations: classpath*:org/jeecg/**/xml/*Mapper.xml From c71ff3fbccb8e3cda66bad3a4d2f76b588223018 Mon Sep 17 00:00:00 2001 From: JEECG <445654970@qq.com> Date: Mon, 26 May 2025 19:14:02 +0800 Subject: [PATCH 2/4] =?UTF-8?q?=E8=AE=BF=E9=97=AESwagger=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E4=B8=8D=E5=B8=A6doc.html=E5=90=8E=E7=BC=80=EF=BC=8C=E4=BC=9A?= =?UTF-8?q?=E4=B8=A2=E5=A4=B1=E9=A1=B9=E7=9B=AE=E5=89=8D=E7=BC=80/jeecg-bo?= =?UTF-8?q?ot/=E5=AF=BC=E8=87=B4=E6=B5=8B=E8=AF=95=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=EF=BC=8C=E8=BF=94=E5=9B=9E=E4=B8=8B=E8=BD=BD=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jeecg-boot/jeecg-boot-base-core/pom.xml | 4 ---- .../src/main/java/org/jeecg/JeecgSystemApplication.java | 4 ++-- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/jeecg-boot/jeecg-boot-base-core/pom.xml b/jeecg-boot/jeecg-boot-base-core/pom.xml index dd82850f6..b050d2882 100644 --- a/jeecg-boot/jeecg-boot-base-core/pom.xml +++ b/jeecg-boot/jeecg-boot-base-core/pom.xml @@ -9,10 +9,6 @@ 4.0.0 jeecg-boot-base-core - - 3.1.5 - - aliyun diff --git a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/java/org/jeecg/JeecgSystemApplication.java b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/java/org/jeecg/JeecgSystemApplication.java index 8e1155b87..843cbc4f4 100644 --- a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/java/org/jeecg/JeecgSystemApplication.java +++ b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/java/org/jeecg/JeecgSystemApplication.java @@ -46,8 +46,8 @@ public class JeecgSystemApplication extends SpringBootServletInitializer { String path = oConvertUtils.getString(env.getProperty("server.servlet.context-path")); log.info("\n----------------------------------------------------------\n\t" + "Application Jeecg-Boot is running! Access URLs:\n\t" + - "Local: \t\thttp://localhost:" + port + path + "/\n\t" + - "External: \thttp://" + ip + ":" + port + path + "/\n\t" + + "Local: \t\thttp://localhost:" + port + path + "/doc.html\n\t" + + "External: \thttp://" + ip + ":" + port + path + "/doc.html\n\t" + "Swagger文档: \thttp://" + ip + ":" + port + path + "/doc.html\n" + "----------------------------------------------------------"); From 10a9edd10ba431173af88680245ca056681f2e4e Mon Sep 17 00:00:00 2001 From: JEECG <445654970@qq.com> Date: Tue, 27 May 2025 17:56:46 +0800 Subject: [PATCH 3/4] =?UTF-8?q?ai=E2=BC=AF=E4=BD=9C=E6=B5=81=E4=BD=BF?= =?UTF-8?q?=E2=BD=A4=E7=9F=A5=E8=AF=86=E5=BA=93=E6=8A=A5=E9=94=99=20"?= =?UTF-8?q?=E7=99=BD=E5=90=8D=E5=8D=95=E6=A0=A1=E9=AA=8C=E6=9C=AA=E9=80=9A?= =?UTF-8?q?=E8=BF=87"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jeecg-boot/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jeecg-boot/pom.xml b/jeecg-boot/pom.xml index a19914f80..1675ddda9 100644 --- a/jeecg-boot/pom.xml +++ b/jeecg-boot/pom.xml @@ -56,7 +56,7 @@ 1.9.5 - 1.10.9 + 1.10.10 3.5.12 4.1.3 From d69cb121fcd95248cdfe3614bc22f85a1fca7a2c Mon Sep 17 00:00:00 2001 From: JEECG <445654970@qq.com> Date: Wed, 28 May 2025 11:07:33 +0800 Subject: [PATCH 4/4] =?UTF-8?q?=E8=A7=A3=E5=86=B3AI=E8=84=9A=E6=9C=AC?= =?UTF-8?q?=E8=8A=82=E7=82=B9=E6=89=A7=E8=A1=8C=E6=8A=A5=E9=94=99=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jeecg-boot/jeecg-boot-module/jeecg-boot-module-airag/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jeecg-boot/jeecg-boot-module/jeecg-boot-module-airag/pom.xml b/jeecg-boot/jeecg-boot-module/jeecg-boot-module-airag/pom.xml index 0dc019fab..62baab924 100644 --- a/jeecg-boot/jeecg-boot-module/jeecg-boot-module-airag/pom.xml +++ b/jeecg-boot/jeecg-boot-module/jeecg-boot-module-airag/pom.xml @@ -56,7 +56,7 @@ org.jeecgframework.boot3 jeecg-aiflow - 1.0.4 + 1.0.5