mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2026-02-04 01:25:34 +08:00
Compare commits
6 Commits
v3.9.0last
...
cdd7c5c5a1
| Author | SHA1 | Date | |
|---|---|---|---|
| cdd7c5c5a1 | |||
| 120cf85eb4 | |||
| a3969a5c63 | |||
| 1222c76ff8 | |||
| 6048866313 | |||
| 83edfa9090 |
@ -7,12 +7,12 @@
|
|||||||
JEECG BOOT AI Low Code Platform
|
JEECG BOOT AI Low Code Platform
|
||||||
===============
|
===============
|
||||||
|
|
||||||
Current version: 3.8.2 (Release date: 2025-08-04)
|
Current version: 3.8.3 (Release date: 2025-10-09)
|
||||||
|
|
||||||
|
|
||||||
[](https://github.com/zhangdaiscott/jeecg-boot/blob/master/LICENSE)
|
[](https://github.com/zhangdaiscott/jeecg-boot/blob/master/LICENSE)
|
||||||
[](http://www.jeecg.com)
|
[](http://www.jeecg.com)
|
||||||
[](https://github.com/zhangdaiscott/jeecg-boot)
|
[](https://github.com/zhangdaiscott/jeecg-boot)
|
||||||
[](https://github.com/zhangdaiscott/jeecg-boot)
|
[](https://github.com/zhangdaiscott/jeecg-boot)
|
||||||
[](https://github.com/zhangdaiscott/jeecg-boot)
|
[](https://github.com/zhangdaiscott/jeecg-boot)
|
||||||
|
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
JeecgBoot AI低代码平台
|
JeecgBoot AI低代码平台
|
||||||
===============
|
===============
|
||||||
|
|
||||||
当前最新版本: 3.8.3(发布日期:2025-09-22)
|
当前最新版本: 3.8.3(发布日期:2025-10-09)
|
||||||
|
|
||||||
|
|
||||||
[](https://github.com/jeecgboot/JeecgBoot/blob/master/LICENSE)
|
[](https://github.com/jeecgboot/JeecgBoot/blob/master/LICENSE)
|
||||||
|
|||||||
@ -109,28 +109,33 @@ services:
|
|||||||
# environment:
|
# environment:
|
||||||
# RABBITMQ_DEFAULT_USER: guest
|
# RABBITMQ_DEFAULT_USER: guest
|
||||||
# RABBITMQ_DEFAULT_PASS: guest
|
# RABBITMQ_DEFAULT_PASS: guest
|
||||||
# jeecg-boot-sentinel:
|
|
||||||
# restart: on-failure
|
|
||||||
# build:
|
|
||||||
# context: ./jeecg-visual/jeecg-cloud-sentinel
|
|
||||||
# ports:
|
|
||||||
# - 9000:9000
|
|
||||||
# depends_on:
|
|
||||||
# - jeecg-boot-nacos
|
|
||||||
# - jeecg-boot-demo
|
|
||||||
# - jeecg-boot-system
|
|
||||||
# - jeecg-boot-gateway
|
|
||||||
# container_name: jeecg-boot-sentinel
|
|
||||||
# hostname: jeecg-boot-sentinel
|
|
||||||
#
|
|
||||||
# jeecg-boot-xxljob:
|
|
||||||
# build:
|
|
||||||
# context: ./jeecg-visual/jeecg-cloud-xxljob
|
|
||||||
# ports:
|
|
||||||
# - 9080:9080
|
|
||||||
# container_name: jeecg-boot-xxljob
|
|
||||||
# hostname: jeecg-boot-xxljob
|
|
||||||
|
|
||||||
|
jeecg-boot-sentinel:
|
||||||
|
restart: on-failure
|
||||||
|
build:
|
||||||
|
context: ./jeecg-boot/jeecg-server-cloud/jeecg-visual/jeecg-cloud-sentinel
|
||||||
|
ports:
|
||||||
|
- 9000:9000
|
||||||
|
depends_on:
|
||||||
|
- jeecg-boot-nacos
|
||||||
|
- jeecg-boot-demo
|
||||||
|
- jeecg-boot-system
|
||||||
|
- jeecg-boot-gateway
|
||||||
|
container_name: jeecg-boot-sentinel
|
||||||
|
hostname: jeecg-boot-sentinel
|
||||||
|
networks:
|
||||||
|
- jeecg-boot
|
||||||
|
|
||||||
|
jeecg-boot-xxljob:
|
||||||
|
build:
|
||||||
|
context: ./jeecg-boot/jeecg-server-cloud/jeecg-visual/jeecg-cloud-xxljob
|
||||||
|
ports:
|
||||||
|
- 9080:9080
|
||||||
|
container_name: jeecg-boot-xxljob
|
||||||
|
hostname: jeecg-boot-xxljob
|
||||||
|
networks:
|
||||||
|
- jeecg-boot
|
||||||
|
|
||||||
jeecg-vue:
|
jeecg-vue:
|
||||||
build:
|
build:
|
||||||
context: ./jeecgboot-vue3
|
context: ./jeecgboot-vue3
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@ -133,7 +133,7 @@ public class SysTenantController {
|
|||||||
@RequestMapping(value = "/add", method = RequestMethod.POST)
|
@RequestMapping(value = "/add", method = RequestMethod.POST)
|
||||||
public Result<SysTenant> add(@RequestBody SysTenant sysTenant) {
|
public Result<SysTenant> add(@RequestBody SysTenant sysTenant) {
|
||||||
Result<SysTenant> result = new Result();
|
Result<SysTenant> result = new Result();
|
||||||
if(sysTenantService.getById(sysTenant.getId())!=null){
|
if(sysTenant!=null && oConvertUtils.isNotEmpty(sysTenant.getId()) && sysTenantService.getById(sysTenant.getId())!=null){
|
||||||
return result.error500("该编号已存在!");
|
return result.error500("该编号已存在!");
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
|
|||||||
@ -266,11 +266,11 @@ jeecg:
|
|||||||
#xxl-job配置
|
#xxl-job配置
|
||||||
xxljob:
|
xxljob:
|
||||||
enabled: false
|
enabled: false
|
||||||
adminAddresses: http://127.0.0.1:9080/xxl-job-admin
|
adminAddresses: http://jeecg-boot-xxljob:9080/xxl-job-admin
|
||||||
appname: ${spring.application.name}
|
appname: ${spring.application.name}
|
||||||
accessToken: ''
|
accessToken: ''
|
||||||
address: 127.0.0.1:30007
|
address: jeecg-boot-xxljob:30007
|
||||||
ip: 127.0.0.1
|
ip: jeecg-boot-xxljob
|
||||||
port: 30007
|
port: 30007
|
||||||
logPath: logs/jeecg/job/jobhandler/
|
logPath: logs/jeecg/job/jobhandler/
|
||||||
logRetentionDays: 30
|
logRetentionDays: 30
|
||||||
|
|||||||
@ -12,5 +12,5 @@ EXPOSE 9080
|
|||||||
|
|
||||||
ADD ./target/jeecg-cloud-xxljob-3.8.3.jar ./
|
ADD ./target/jeecg-cloud-xxljob-3.8.3.jar ./
|
||||||
|
|
||||||
CMD java -Dfile.encoding=utf-8 -Djava.security.egd=file:/dev/./urandom -jar jeecg-cloud-xxljob-3.8.3.jar
|
CMD sleep 60;java -Dfile.encoding=utf-8 -Djava.security.egd=file:/dev/./urandom -jar jeecg-cloud-xxljob-3.8.3.jar
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user