src/main/java/com/fzzy/gateway/GatewayRunner.java | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
src/main/java/com/fzzy/gateway/api/GatewayRemoteManager.java | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
src/main/java/com/fzzy/gateway/api/GatewayRemoteService.java | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
src/main/java/com/fzzy/gateway/api/GatewaySyncService.java | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
src/main/java/com/fzzy/gateway/sc2023/service/ApiInitService.java | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
src/main/java/com/fzzy/gateway/sc2023/service/ScGatewayRemoteServiceImpl.java | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
src/main/java/com/fzzy/gateway/GatewayRunner.java
@@ -1,6 +1,6 @@ package com.fzzy.gateway; import com.fzzy.gateway.sc2023.api.ApiInitService; import com.fzzy.gateway.sc2023.service.ApiInitService; import lombok.extern.slf4j.Slf4j; import org.springframework.boot.CommandLineRunner; import org.springframework.core.annotation.Order; src/main/java/com/fzzy/gateway/api/GatewayRemoteManager.java
文件名从 src/main/java/com/fzzy/gateway/sc2023/api/GatewayRemoteManager.java 修改 @@ -1,4 +1,4 @@ package com.fzzy.gateway.sc2023.api; package com.fzzy.gateway.api; import org.springframework.beans.BeansException; import org.springframework.context.ApplicationContext; src/main/java/com/fzzy/gateway/api/GatewayRemoteService.java
文件名从 src/main/java/com/fzzy/gateway/sc2023/api/GatewayRemoteService.java 修改 @@ -1,4 +1,4 @@ package com.fzzy.gateway.sc2023.api; package com.fzzy.gateway.api; import com.fzzy.gateway.data.GatewayResponse; import com.fzzy.gateway.entity.GatewayConf; src/main/java/com/fzzy/gateway/api/GatewaySyncService.java
文件名从 src/main/java/com/fzzy/gateway/sc2023/api/GatewaySyncService.java 修改 @@ -1,4 +1,4 @@ package com.fzzy.gateway.sc2023.api; package com.fzzy.gateway.api; import com.fzzy.gateway.sc2023.data.*; src/main/java/com/fzzy/gateway/sc2023/service/ApiInitService.java
文件名从 src/main/java/com/fzzy/gateway/sc2023/api/ApiInitService.java 修改 @@ -1,5 +1,7 @@ package com.fzzy.gateway.sc2023.api; package com.fzzy.gateway.sc2023.service; import com.fzzy.gateway.api.GatewayRemoteManager; import com.fzzy.gateway.api.GatewayRemoteService; import com.fzzy.gateway.entity.GatewayConf; import com.fzzy.gateway.service.GatewayConfService; import lombok.extern.slf4j.Slf4j; src/main/java/com/fzzy/gateway/sc2023/service/ScGatewayRemoteServiceImpl.java
文件名从 src/main/java/com/fzzy/gateway/sc2023/api/ScGatewayRemoteService.java 修改 @@ -1,4 +1,4 @@ package com.fzzy.gateway.sc2023.api; package com.fzzy.gateway.sc2023.service; import com.fzzy.api.data.AuthToken; import com.fzzy.api.data.PushProtocol; @@ -7,6 +7,7 @@ import com.fzzy.api.utils.RedisConst; import com.fzzy.api.utils.RedisUtil; import com.fzzy.api.view.repository.ApiLogRep; import com.fzzy.gateway.api.GatewayRemoteService; import com.fzzy.gateway.data.GatewayResponse; import com.fzzy.gateway.entity.GatewayConf; import com.fzzy.gateway.sc2023.ScConstant; @@ -23,7 +24,7 @@ @Slf4j @Data @Service public class ScGatewayRemoteService implements GatewayRemoteService { public class ScGatewayRemoteServiceImpl implements GatewayRemoteService { @Resource