Merge branch 'master-jdk17' of https://gitee.com/zhijiantianya/yudao-cloud
# Conflicts: # pom.xml # yudao-dependencies/pom.xml # yudao-framework/yudao-common/pom.xml # yudao-framework/yudao-spring-boot-starter-mybatis/src/main/java/cn/iocoder/yudao/framework/translate/config/YudaoTranslateAutoConfiguration.java # yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/api/user/AdminUserApi.javamaster
commit
8a4a8f8fd3
|
|
@ -3,12 +3,14 @@ package cn.iocoder.yudao.framework.translate.config;
|
||||||
import cn.iocoder.yudao.framework.translate.core.TranslateUtils;
|
import cn.iocoder.yudao.framework.translate.core.TranslateUtils;
|
||||||
import org.dromara.trans.service.impl.TransService;
|
import org.dromara.trans.service.impl.TransService;
|
||||||
import org.springframework.boot.autoconfigure.AutoConfiguration;
|
import org.springframework.boot.autoconfigure.AutoConfiguration;
|
||||||
|
import org.springframework.boot.autoconfigure.condition.ConditionalOnBean;
|
||||||
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Bean;
|
||||||
|
|
||||||
@AutoConfiguration
|
@AutoConfiguration
|
||||||
public class YudaoTranslateAutoConfiguration {
|
public class YudaoTranslateAutoConfiguration {
|
||||||
|
|
||||||
@Bean
|
@Bean
|
||||||
|
@ConditionalOnBean(TransService.class)
|
||||||
@SuppressWarnings("InstantiationOfUtilityClass")
|
@SuppressWarnings("InstantiationOfUtilityClass")
|
||||||
public TranslateUtils translateUtils(TransService transService) {
|
public TranslateUtils translateUtils(TransService transService) {
|
||||||
TranslateUtils.init(transService);
|
TranslateUtils.init(transService);
|
||||||
|
|
|
||||||
|
|
@ -188,7 +188,6 @@ justauth:
|
||||||
prefix: 'social_auth_state:' # 缓存前缀,目前只对 Redis 缓存生效,默认 JUSTAUTH::STATE::
|
prefix: 'social_auth_state:' # 缓存前缀,目前只对 Redis 缓存生效,默认 JUSTAUTH::STATE::
|
||||||
timeout: 24h # 超时时长,目前只对 Redis 缓存生效,默认 3 分钟
|
timeout: 24h # 超时时长,目前只对 Redis 缓存生效,默认 3 分钟
|
||||||
|
|
||||||
|
|
||||||
--- #################### iot相关配置 TODO 芋艿:再瞅瞅 ####################
|
--- #################### iot相关配置 TODO 芋艿:再瞅瞅 ####################
|
||||||
iot:
|
iot:
|
||||||
emq:
|
emq:
|
||||||
|
|
@ -207,7 +206,6 @@ iot:
|
||||||
# 清除会话(设置为false,断开连接,重连后使用原来的会话 保留订阅的主题,能接收离线期间的消息)
|
# 清除会话(设置为false,断开连接,重连后使用原来的会话 保留订阅的主题,能接收离线期间的消息)
|
||||||
clearSession: true
|
clearSession: true
|
||||||
|
|
||||||
|
|
||||||
# 插件配置
|
# 插件配置
|
||||||
pf4j:
|
pf4j:
|
||||||
pluginsDir: ${user.home}/plugins # 插件目录
|
pluginsDir: ${user.home}/plugins # 插件目录
|
||||||
Loading…
Reference in New Issue