初始化

chentaisen 2024-09-21 19:00:12 +08:00 committed by 张毅大神
parent cc7d2db478
commit 264fe232bb
3 changed files with 2 additions and 12 deletions

View File

@ -164,15 +164,6 @@
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.5.7</version>
</dependency>
<dependency>
<groupId>com.github.yulichang</groupId>
<artifactId>mybatis-plus-join-boot-starter</artifactId>
<version>1.4.11</version>
</dependency>
</dependencies>
</project>

View File

@ -50,7 +50,7 @@ public class ValidateCodeServiceImpl implements ValidateCodeService {
CaptchaCodeResp.CaptchaCodeRespBuilder respBuilder = CaptchaCodeResp.builder()
.captchaEnabled(captchaEnabled);
if (!captchaEnabled) {
return Result.success(respBuilder.build());
return Result.success(respBuilder);
}
// 保存验证码信息

View File

@ -5,4 +5,3 @@ docker run --name xxl-job-admin -d \
-e PARAMS="--spring.config.additional-location=/config/application.properties" \
-v ./log:/data/applogs \
xuxueli/xxl-job-admin:2.4.1