refactor: other 服务 feign client 支持服务发现双模式
@FeignClient 改为 contextId 保留原 bean 名,name=rc-service-other,
url 使用 ${feign.other.url:}(带空默认值),API 前缀挪到 path。
行为:feign.other.url 配置存在(当前各服务启动参数注入 CLB VIP)时与原来
完全一致;置空/移除该参数后自动切换为 Nacos 服务发现负载均衡(lb)。
背景:内网 CLB 对"客户端本身是后端"的流量只调度到对面后端,对面实例被摘
除时连接被黑洞,导致部署 other 时调用方(live)线程池被拖死。切服务发现后
配合平台的 Nacos 摘流 + framework-nacos 的 LB 缓存驱逐实现无损发布。
先灰度 live→other(移除 live 启动参数中的 --feign.other.url),验证后全量。
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
parent
431f73469e
commit
146db166fc
@ -6,8 +6,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
/**
|
||||
* @author longli on @date 2024/3/14
|
||||
*/
|
||||
@FeignClient(name = "activityAgentAnchorCountClient", url = "${feign.other.url}" +
|
||||
ActivityAgentAnchorCountClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "activityAgentAnchorCountClient", name = "rc-service-other", url = "${feign.other.url:}", path = ActivityAgentAnchorCountClientApi.API_PREFIX)
|
||||
public interface ActivityAgentAnchorCountClient extends ActivityAgentAnchorCountClientApi {
|
||||
|
||||
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/10/8
|
||||
*/
|
||||
@FeignClient(name = "activityGlobalizationDescriptionClient", url = "${feign.other.url}" +
|
||||
ActivityGlobalizationDescriptionClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "activityGlobalizationDescriptionClient", name = "rc-service-other", url = "${feign.other.url:}", path = ActivityGlobalizationDescriptionClientApi.API_PREFIX)
|
||||
public interface ActivityGlobalizationDescriptionClient extends
|
||||
ActivityGlobalizationDescriptionClientApi {
|
||||
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/10/9
|
||||
*/
|
||||
@FeignClient(name = "activityHallFameClient", url = "${feign.other.url}" +
|
||||
ActivityHallFameClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "activityHallFameClient", name = "rc-service-other", url = "${feign.other.url:}", path = ActivityHallFameClientApi.API_PREFIX)
|
||||
public interface ActivityHallFameClient extends ActivityHallFameClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -7,8 +7,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
* 活动图片配置
|
||||
* @author zongpubin on 2024/1/29
|
||||
*/
|
||||
@FeignClient(name = "activityPictureConfigClient", url = "${feign.other.url}" +
|
||||
ActivityPictureConfigClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "activityPictureConfigClient", name = "rc-service-other", url = "${feign.other.url:}", path = ActivityPictureConfigClientApi.API_PREFIX)
|
||||
public interface ActivityPictureConfigClient extends ActivityPictureConfigClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -6,8 +6,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
/**
|
||||
* @author zongpubin on 2023/8/15
|
||||
*/
|
||||
@FeignClient(name = "agentActivityCountClient", url = "${feign.other.url}" +
|
||||
AgentActivityCountClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "agentActivityCountClient", name = "rc-service-other", url = "${feign.other.url:}", path = AgentActivityCountClientApi.API_PREFIX)
|
||||
public interface AgentActivityCountClient extends AgentActivityCountClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/8/16
|
||||
*/
|
||||
@FeignClient(name = "appRankCountClient", url = "${feign.other.url}" +
|
||||
AppRankCountClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "appRankCountClient", name = "rc-service-other", url = "${feign.other.url:}", path = AppRankCountClientApi.API_PREFIX)
|
||||
public interface AppRankCountClient extends AppRankCountClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/8/18
|
||||
*/
|
||||
@FeignClient(name = "cumulativeRechargeClient", url = "${feign.other.url}" +
|
||||
CumulativeRechargeClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "cumulativeRechargeClient", name = "rc-service-other", url = "${feign.other.url:}", path = CumulativeRechargeClientApi.API_PREFIX)
|
||||
public interface CumulativeRechargeClient extends CumulativeRechargeClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -6,8 +6,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
/**
|
||||
* @author pengliang on 2023/5/26
|
||||
*/
|
||||
@FeignClient(name = "inviteActivityCountClient", url = "${feign.other.url}" +
|
||||
InviteActivityCountClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "inviteActivityCountClient", name = "rc-service-other", url = "${feign.other.url:}", path = InviteActivityCountClientApi.API_PREFIX)
|
||||
public interface InviteActivityCountClient extends InviteActivityCountClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -9,8 +9,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
* @author system
|
||||
* @since 2025-10-18
|
||||
*/
|
||||
@FeignClient(name = "lotteryActivityClient", url = "${feign.other.url}" +
|
||||
LotteryActivityClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "lotteryActivityClient", name = "rc-service-other", url = "${feign.other.url:}", path = LotteryActivityClientApi.API_PREFIX)
|
||||
public interface LotteryActivityClient extends LotteryActivityClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -9,8 +9,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
* @author system
|
||||
* @since 2025-10-18
|
||||
*/
|
||||
@FeignClient(name = "lotteryActivityManageClient", url = "${feign.other.url}" +
|
||||
LotteryActivityManageClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "lotteryActivityManageClient", name = "rc-service-other", url = "${feign.other.url:}", path = LotteryActivityManageClientApi.API_PREFIX)
|
||||
public interface LotteryActivityManageClient extends LotteryActivityManageClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -9,8 +9,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
* @author system
|
||||
* @since 2025-10-18
|
||||
*/
|
||||
@FeignClient(name = "lotteryActivityQueryClient", url = "${feign.other.url}" +
|
||||
LotteryActivityQueryClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "lotteryActivityQueryClient", name = "rc-service-other", url = "${feign.other.url:}", path = LotteryActivityQueryClientApi.API_PREFIX)
|
||||
public interface LotteryActivityQueryClient extends LotteryActivityQueryClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -9,8 +9,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
* @author system
|
||||
* @since 2025-10-18
|
||||
*/
|
||||
@FeignClient(name = "lotteryPrizeClient", url = "${feign.other.url}" +
|
||||
LotteryPrizeClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "lotteryPrizeClient", name = "rc-service-other", url = "${feign.other.url:}", path = LotteryPrizeClientApi.API_PREFIX)
|
||||
public interface LotteryPrizeClient extends LotteryPrizeClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -9,8 +9,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
* @author system
|
||||
* @since 2025-10-18
|
||||
*/
|
||||
@FeignClient(name = "lotteryPrizeManageClient", url = "${feign.other.url}" +
|
||||
LotteryPrizeManageClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "lotteryPrizeManageClient", name = "rc-service-other", url = "${feign.other.url:}", path = LotteryPrizeManageClientApi.API_PREFIX)
|
||||
public interface LotteryPrizeManageClient extends LotteryPrizeManageClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -9,8 +9,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
* @author system
|
||||
* @since 2025-10-18
|
||||
*/
|
||||
@FeignClient(name = "lotteryRecordClient", url = "${feign.other.url}" +
|
||||
LotteryRecordClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "lotteryRecordClient", name = "rc-service-other", url = "${feign.other.url:}", path = LotteryRecordClientApi.API_PREFIX)
|
||||
public interface LotteryRecordClient extends LotteryRecordClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -9,8 +9,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
* @author system
|
||||
* @since 2025-10-18
|
||||
*/
|
||||
@FeignClient(name = "lotteryRecordManageClient", url = "${feign.other.url}" +
|
||||
LotteryRecordManageClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "lotteryRecordManageClient", name = "rc-service-other", url = "${feign.other.url:}", path = LotteryRecordManageClientApi.API_PREFIX)
|
||||
public interface LotteryRecordManageClient extends LotteryRecordManageClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -9,8 +9,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
* @author system
|
||||
* @since 2025-10-18
|
||||
*/
|
||||
@FeignClient(name = "lotteryTicketClient", url = "${feign.other.url}" +
|
||||
LotteryTicketClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "lotteryTicketClient", name = "rc-service-other", url = "${feign.other.url:}", path = LotteryTicketClientApi.API_PREFIX)
|
||||
public interface LotteryTicketClient extends LotteryTicketClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -9,8 +9,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
* @author system
|
||||
* @since 2025-10-18
|
||||
*/
|
||||
@FeignClient(name = "lotteryTicketManageClient", url = "${feign.other.url}" +
|
||||
LotteryTicketManageClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "lotteryTicketManageClient", name = "rc-service-other", url = "${feign.other.url:}", path = LotteryTicketManageClientApi.API_PREFIX)
|
||||
public interface LotteryTicketManageClient extends LotteryTicketManageClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -9,8 +9,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
* @author system
|
||||
* @since 2025-10-18
|
||||
*/
|
||||
@FeignClient(name = "lotteryUserCountClient", url = "${feign.other.url}" +
|
||||
LotteryUserCountClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "lotteryUserCountClient", name = "rc-service-other", url = "${feign.other.url:}", path = LotteryUserCountClientApi.API_PREFIX)
|
||||
public interface LotteryUserCountClient extends LotteryUserCountClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/6/5
|
||||
*/
|
||||
@FeignClient(name = "propsActivityCnfClient", url = "${feign.other.url}" +
|
||||
PropsActivityClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "propsActivityCnfClient", name = "rc-service-other", url = "${feign.other.url:}", path = PropsActivityClientApi.API_PREFIX)
|
||||
public interface PropsActivityClient extends PropsActivityClientApi {
|
||||
|
||||
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/11/2
|
||||
*/
|
||||
@FeignClient(name = "roomContributionActivityCountClient", url = "${feign.other.url}" +
|
||||
RoomContributionActivityCountClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "roomContributionActivityCountClient", name = "rc-service-other", url = "${feign.other.url:}", path = RoomContributionActivityCountClientApi.API_PREFIX)
|
||||
public interface RoomContributionActivityCountClient extends
|
||||
RoomContributionActivityCountClientApi {
|
||||
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/11/23
|
||||
*/
|
||||
@FeignClient(name = "roomContributionCountClient", url = "${feign.other.url}" +
|
||||
RoomContributionCountClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "roomContributionCountClient", name = "rc-service-other", url = "${feign.other.url:}", path = RoomContributionCountClientApi.API_PREFIX)
|
||||
public interface RoomContributionCountClient extends RoomContributionCountClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author lixiaofei on 2024/7/8
|
||||
*/
|
||||
@FeignClient(name = "temporaryActivityCountClient", url = "${feign.other.url}" +
|
||||
TemporaryActivityCountClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "temporaryActivityCountClient", name = "rc-service-other", url = "${feign.other.url:}", path = TemporaryActivityCountClientApi.API_PREFIX)
|
||||
public interface TemporaryActivityCountClient extends TemporaryActivityCountClientApi {
|
||||
|
||||
|
||||
|
||||
@ -6,8 +6,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
/**
|
||||
* 用户活动充值服务
|
||||
*/
|
||||
@FeignClient(name = "userActivityRechargeClient", url = "${feign.other.url}" +
|
||||
UserActivityRechargeClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "userActivityRechargeClient", name = "rc-service-other", url = "${feign.other.url:}", path = UserActivityRechargeClientApi.API_PREFIX)
|
||||
public interface UserActivityRechargeClient extends UserActivityRechargeClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,7 +8,6 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/11/16
|
||||
*/
|
||||
@FeignClient(name = "aiQianFanChatClient", url = "${feign.other.url}" +
|
||||
AiQianFanChatClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "aiQianFanChatClient", name = "rc-service-other", url = "${feign.other.url:}", path = AiQianFanChatClientApi.API_PREFIX)
|
||||
public interface AiQianFanChatClient extends AiQianFanChatClientApi {
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/5/25
|
||||
*/
|
||||
@FeignClient(name = "approvalUserSettingDataClient", url = "${feign.other.url}" +
|
||||
ApprovalUserSettingDataClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "approvalUserSettingDataClient", name = "rc-service-other", url = "${feign.other.url:}", path = ApprovalUserSettingDataClientApi.API_PREFIX)
|
||||
public interface ApprovalUserSettingDataClient extends ApprovalUserSettingDataClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author zongpubin on 2024/1/22
|
||||
*/
|
||||
@FeignClient(name = "approvalUserViolationHistoryClient", url = "${feign.other.url}" +
|
||||
ApprovalUserViolationHistoryClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "approvalUserViolationHistoryClient", name = "rc-service-other", url = "${feign.other.url:}", path = ApprovalUserViolationHistoryClientApi.API_PREFIX)
|
||||
public interface ApprovalUserViolationHistoryClient extends ApprovalUserViolationHistoryClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/12/27
|
||||
*/
|
||||
@FeignClient(name = "managerApprovalNotPassClient", url = "${feign.other.url}" +
|
||||
ManagerApprovalNotPassClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "managerApprovalNotPassClient", name = "rc-service-other", url = "${feign.other.url:}", path = ManagerApprovalNotPassClientApi.API_PREFIX)
|
||||
public interface ManagerApprovalNotPassClient extends ManagerApprovalNotPassClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -3,8 +3,7 @@ package com.red.circle.other.inner.endpoint.approval;
|
||||
import com.red.circle.other.inner.endpoint.approval.api.TeamApplicationProcessApprovalClientApi;
|
||||
import org.springframework.cloud.openfeign.FeignClient;
|
||||
|
||||
@FeignClient(name = "teamApplicationProcessApprovalClient", url = "${feign.other.url}" +
|
||||
TeamApplicationProcessApprovalClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "teamApplicationProcessApprovalClient", name = "rc-service-other", url = "${feign.other.url:}", path = TeamApplicationProcessApprovalClientApi.API_PREFIX)
|
||||
public interface TeamApplicationProcessApprovalClient extends
|
||||
TeamApplicationProcessApprovalClientApi {
|
||||
|
||||
|
||||
@ -4,8 +4,7 @@ package com.red.circle.other.inner.endpoint.approval;
|
||||
import com.red.circle.other.inner.endpoint.approval.api.TeamApplicationProcessClientApi;
|
||||
import org.springframework.cloud.openfeign.FeignClient;
|
||||
|
||||
@FeignClient(name = "teamApplicationProcessClient", url = "${feign.other.url}" +
|
||||
TeamApplicationProcessClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "teamApplicationProcessClient", name = "rc-service-other", url = "${feign.other.url:}", path = TeamApplicationProcessClientApi.API_PREFIX)
|
||||
public interface TeamApplicationProcessClient extends TeamApplicationProcessClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -3,8 +3,7 @@ package com.red.circle.other.inner.endpoint.approval;
|
||||
import com.red.circle.other.inner.endpoint.approval.api.TeamTerminationFeeRecordClientApi;
|
||||
import org.springframework.cloud.openfeign.FeignClient;
|
||||
|
||||
@FeignClient(name = "teamTerminationFeeRecordClient", url = "${feign.other.url}" +
|
||||
TeamTerminationFeeRecordClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "teamTerminationFeeRecordClient", name = "rc-service-other", url = "${feign.other.url:}", path = TeamTerminationFeeRecordClientApi.API_PREFIX)
|
||||
public interface TeamTerminationFeeRecordClient extends TeamTerminationFeeRecordClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/11/17
|
||||
*/
|
||||
@FeignClient(name = "statisticsPropsSaleQuotaClient", url = "${feign.other.url}" +
|
||||
StatisticsPropsSaleQuotaClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "statisticsPropsSaleQuotaClient", name = "rc-service-other", url = "${feign.other.url:}", path = StatisticsPropsSaleQuotaClientApi.API_PREFIX)
|
||||
public interface StatisticsPropsSaleQuotaClient extends StatisticsPropsSaleQuotaClientApi {
|
||||
|
||||
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/11/16
|
||||
*/
|
||||
@FeignClient(name = "statisticsRoomActiveClient", url = "${feign.other.url}" +
|
||||
StatisticsRoomActiveClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "statisticsRoomActiveClient", name = "rc-service-other", url = "${feign.other.url:}", path = StatisticsRoomActiveClientApi.API_PREFIX)
|
||||
public interface StatisticsRoomActiveClient extends StatisticsRoomActiveClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author zongpubin on 2024/1/22
|
||||
*/
|
||||
@FeignClient(name = "approvalDateInfoClient", url = "${feign.other.url}" +
|
||||
ApprovalDataInfoClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "approvalDateInfoClient", name = "rc-service-other", url = "${feign.other.url:}", path = ApprovalDataInfoClientApi.API_PREFIX)
|
||||
public interface ApprovalDataInfoClient extends ApprovalDataInfoClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author zongpubin on 2024/1/19
|
||||
*/
|
||||
@FeignClient(name = "ApprovalDynamicClient", url = "${feign.other.url}" +
|
||||
ApprovalDynamicClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "ApprovalDynamicClient", name = "rc-service-other", url = "${feign.other.url:}", path = ApprovalDynamicClientApi.API_PREFIX)
|
||||
public interface ApprovalDynamicClient extends ApprovalDynamicClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author zongpubin on 2024/1/20
|
||||
*/
|
||||
@FeignClient(name = "approvalDynamicReportClient", url = "${feign.other.url}" +
|
||||
ApprovalDynamicReportClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "approvalDynamicReportClient", name = "rc-service-other", url = "${feign.other.url:}", path = ApprovalDynamicReportClientApi.API_PREFIX)
|
||||
public interface ApprovalDynamicReportClient extends ApprovalDynamicReportClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author zongpubin on 2024/1/20
|
||||
*/
|
||||
@FeignClient(name = "approvalFamilySettingDataClient", url = "${feign.other.url}" +
|
||||
ApprovalFamilySettingDataClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "approvalFamilySettingDataClient", name = "rc-service-other", url = "${feign.other.url:}", path = ApprovalFamilySettingDataClientApi.API_PREFIX)
|
||||
public interface ApprovalFamilySettingDataClient extends ApprovalFamilySettingDataClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author zongpubin on 2024/1/22
|
||||
*/
|
||||
@FeignClient(name = "approvalUserSettingInfoClient", url = "${feign.other.url}" +
|
||||
ApprovalUserSettingInfoClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "approvalUserSettingInfoClient", name = "rc-service-other", url = "${feign.other.url:}", path = ApprovalUserSettingInfoClientApi.API_PREFIX)
|
||||
public interface ApprovalUserSettingInfoClient extends ApprovalUserSettingInfoClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author lisizhe on 2023/10/5
|
||||
*/
|
||||
@FeignClient(name = "dynamicBlacklistClient", url = "${feign.other.url}" +
|
||||
DynamicBlacklistClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "dynamicBlacklistClient", name = "rc-service-other", url = "${feign.other.url:}", path = DynamicBlacklistClientApi.API_PREFIX)
|
||||
public interface DynamicBlacklistClient extends DynamicBlacklistClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author lisizhe on 2023/10/5
|
||||
*/
|
||||
@FeignClient(name = "dynamicCacheClient", url = "${feign.other.url}" +
|
||||
DynamicCacheClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "dynamicCacheClient", name = "rc-service-other", url = "${feign.other.url:}", path = DynamicCacheClientApi.API_PREFIX)
|
||||
public interface DynamicCacheClient extends DynamicCacheClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author lisizhe on 2023/10/5
|
||||
*/
|
||||
@FeignClient(name = "dynamicContentClient", url = "${feign.other.url}" +
|
||||
DynamicContentClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "dynamicContentClient", name = "rc-service-other", url = "${feign.other.url:}", path = DynamicContentClientApi.API_PREFIX)
|
||||
public interface DynamicContentClient extends DynamicContentClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author lisizhe on 2023/10/5
|
||||
*/
|
||||
@FeignClient(name = "dynamicPictureClient", url = "${feign.other.url}" +
|
||||
DynamicPictureClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "dynamicPictureClient", name = "rc-service-other", url = "${feign.other.url:}", path = DynamicPictureClientApi.API_PREFIX)
|
||||
public interface DynamicPictureClient extends DynamicPictureClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author lisizhe on 2023/10/5
|
||||
*/
|
||||
@FeignClient(name = "dynamicTagClient", url = "${feign.other.url}" +
|
||||
DynamicTagClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "dynamicTagClient", name = "rc-service-other", url = "${feign.other.url:}", path = DynamicTagClientApi.API_PREFIX)
|
||||
public interface DynamicTagClient extends DynamicTagClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author zongpubin on 2024/1/22
|
||||
*/
|
||||
@FeignClient(name = "dynamicTimelineClient", url = "${feign.other.url}" +
|
||||
DynamicTimelineClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "dynamicTimelineClient", name = "rc-service-other", url = "${feign.other.url:}", path = DynamicTimelineClientApi.API_PREFIX)
|
||||
public interface DynamicTimelineClient extends DynamicTimelineClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author lisizhe on 2023/10/5
|
||||
*/
|
||||
@FeignClient(name = "topDynamicClient", url = "${feign.other.url}" +
|
||||
TopDynamicClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "topDynamicClient", name = "rc-service-other", url = "${feign.other.url:}", path = TopDynamicClientApi.API_PREFIX)
|
||||
public interface TopDynamicClient extends TopDynamicClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/6/5
|
||||
*/
|
||||
@FeignClient(name = "familyBaseInfoClient", url = "${feign.other.url}" +
|
||||
FamilyBaseInfoClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "familyBaseInfoClient", name = "rc-service-other", url = "${feign.other.url:}", path = FamilyBaseInfoClientApi.API_PREFIX)
|
||||
public interface FamilyBaseInfoClient extends FamilyBaseInfoClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,7 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/6/5
|
||||
*/
|
||||
@FeignClient(name = "familyClient", url = "${feign.other.url}" + FamilyClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "familyClient", name = "rc-service-other", url = "${feign.other.url:}", path = FamilyClientApi.API_PREFIX)
|
||||
public interface FamilyClient extends FamilyClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/6/5
|
||||
*/
|
||||
@FeignClient(name = "familyCreateRulesClient", url = "${feign.other.url}" +
|
||||
FamilyCreateRulesClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "familyCreateRulesClient", name = "rc-service-other", url = "${feign.other.url:}", path = FamilyCreateRulesClientApi.API_PREFIX)
|
||||
public interface FamilyCreateRulesClient extends FamilyCreateRulesClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/10/22
|
||||
*/
|
||||
@FeignClient(name = "familyDailyTaskTriggerRecordClient", url = "${feign.other.url}" +
|
||||
FamilyDailyTaskTriggerRecordClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "familyDailyTaskTriggerRecordClient", name = "rc-service-other", url = "${feign.other.url:}", path = FamilyDailyTaskTriggerRecordClientApi.API_PREFIX)
|
||||
public interface FamilyDailyTaskTriggerRecordClient extends FamilyDailyTaskTriggerRecordClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/6/5
|
||||
*/
|
||||
@FeignClient(name = "familyLevelConfigClient", url = "${feign.other.url}" +
|
||||
FamilyLevelConfigClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "familyLevelConfigClient", name = "rc-service-other", url = "${feign.other.url:}", path = FamilyLevelConfigClientApi.API_PREFIX)
|
||||
public interface FamilyLevelConfigClient extends FamilyLevelConfigClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/6/5
|
||||
*/
|
||||
@FeignClient(name = "familyMemberClient", url = "${feign.other.url}" +
|
||||
FamilyMemberClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "familyMemberClient", name = "rc-service-other", url = "${feign.other.url:}", path = FamilyMemberClientApi.API_PREFIX)
|
||||
public interface FamilyMemberClient extends FamilyMemberClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/11/16
|
||||
*/
|
||||
@FeignClient(name = "familyMemberWeekAwardClient", url = "${feign.other.url}" +
|
||||
FamilyMemberWeekAwardClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "familyMemberWeekAwardClient", name = "rc-service-other", url = "${feign.other.url:}", path = FamilyMemberWeekAwardClientApi.API_PREFIX)
|
||||
public interface FamilyMemberWeekAwardClient extends FamilyMemberWeekAwardClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/6/5
|
||||
*/
|
||||
@FeignClient(name = "familyRewardRuleClient", url = "${feign.other.url}" +
|
||||
FamilyRewardRuleClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "familyRewardRuleClient", name = "rc-service-other", url = "${feign.other.url:}", path = FamilyRewardRuleClientApi.API_PREFIX)
|
||||
public interface FamilyRewardRuleClient extends FamilyRewardRuleClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,7 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/6/10
|
||||
*/
|
||||
@FeignClient(name = "gameEggClient", url = "${feign.other.url}" + GameEggClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "gameEggClient", name = "rc-service-other", url = "${feign.other.url:}", path = GameEggClientApi.API_PREFIX)
|
||||
public interface GameEggClient extends GameEggClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,7 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/6/10
|
||||
*/
|
||||
@FeignClient(name = "gameKtvClient", url = "${feign.other.url}" + GameKtvClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "gameKtvClient", name = "rc-service-other", url = "${feign.other.url:}", path = GameKtvClientApi.API_PREFIX)
|
||||
public interface GameKtvClient extends GameKtvClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/6/10
|
||||
*/
|
||||
@FeignClient(name = "gameLuckyClient", url = "${feign.other.url}" +
|
||||
GameLuckyClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "gameLuckyClient", name = "rc-service-other", url = "${feign.other.url:}", path = GameLuckyClientApi.API_PREFIX)
|
||||
public interface GameLuckyClient extends GameLuckyClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author zongpubin on 2024/1/24
|
||||
*/
|
||||
@FeignClient(name = "gameLuckyGiftConfigClient", url = "${feign.other.url}" +
|
||||
GameLuckyGiftConfigClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "gameLuckyGiftConfigClient", name = "rc-service-other", url = "${feign.other.url:}", path = GameLuckyGiftConfigClientApi.API_PREFIX)
|
||||
public interface GameLuckyGiftConfigClient extends GameLuckyGiftConfigClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author zongpubin on 2024/1/26
|
||||
*/
|
||||
@FeignClient(name = "gameLudoClient", url = "${feign.other.url}" +
|
||||
GameLudoClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "gameLudoClient", name = "rc-service-other", url = "${feign.other.url:}", path = GameLudoClientApi.API_PREFIX)
|
||||
public interface GameLudoClient extends GameLudoClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,7 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author zongpubin on 2024/1/27
|
||||
*/
|
||||
@FeignClient(name = "gamePkClient", url = "${feign.other.url}" + GamePkClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "gamePkClient", name = "rc-service-other", url = "${feign.other.url:}", path = GamePkClientApi.API_PREFIX)
|
||||
public interface GamePkClient extends GamePkClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author zongpubin on 2024/1/27
|
||||
*/
|
||||
@FeignClient(name = "gameRedPacketBackClient", url = "${feign.other.url}" +
|
||||
GameRedPacketBackClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "gameRedPacketBackClient", name = "rc-service-other", url = "${feign.other.url:}", path = GameRedPacketBackClientApi.API_PREFIX)
|
||||
public interface GameRedPacketBackClient extends GameRedPacketBackClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author zongpubin on 2024/1/25
|
||||
*/
|
||||
@FeignClient(name = "gameTrumpetBlacklistClient", url = "${feign.other.url}" +
|
||||
GameTrumpetBlacklistClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "gameTrumpetBlacklistClient", name = "rc-service-other", url = "${feign.other.url:}", path = GameTrumpetBlacklistClientApi.API_PREFIX)
|
||||
public interface GameTrumpetBlacklistClient extends GameTrumpetBlacklistClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/12/23
|
||||
*/
|
||||
@FeignClient(name = "gameTrumpetCountClient", url = "${feign.other.url}" +
|
||||
GameTrumpetCountClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "gameTrumpetCountClient", name = "rc-service-other", url = "${feign.other.url:}", path = GameTrumpetCountClientApi.API_PREFIX)
|
||||
public interface GameTrumpetCountClient extends GameTrumpetCountClientApi {
|
||||
|
||||
|
||||
|
||||
@ -6,8 +6,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
/**
|
||||
* @author pengliang on 2023/5/31
|
||||
*/
|
||||
@FeignClient(name = "activeVoiceRoomClient", url = "${feign.other.url}" +
|
||||
ActiveVoiceRoomClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "activeVoiceRoomClient", name = "rc-service-other", url = "${feign.other.url:}", path = ActiveVoiceRoomClientApi.API_PREFIX)
|
||||
public interface ActiveVoiceRoomClient extends ActiveVoiceRoomClientApi {
|
||||
|
||||
|
||||
|
||||
@ -6,7 +6,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
/**
|
||||
* @author lisizhe on 2023/5/31
|
||||
*/
|
||||
@FeignClient(name = "hotRoomClient", url = "${feign.other.url}" + HotRoomClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "hotRoomClient", name = "rc-service-other", url = "${feign.other.url:}", path = HotRoomClientApi.API_PREFIX)
|
||||
public interface HotRoomClient extends HotRoomClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -6,8 +6,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
/**
|
||||
* 房间用户心动值
|
||||
*/
|
||||
@FeignClient(name = "liveHeartbeatClient", url = "${feign.other.url}" +
|
||||
LiveHeartbeatApi.API_PREFIX)
|
||||
@FeignClient(contextId = "liveHeartbeatClient", name = "rc-service-other", url = "${feign.other.url:}", path = LiveHeartbeatApi.API_PREFIX)
|
||||
public interface LiveHeartbeatClient extends LiveHeartbeatApi {
|
||||
|
||||
}
|
||||
|
||||
@ -6,8 +6,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
/**
|
||||
* @author pengliang on 2023/5/31
|
||||
*/
|
||||
@FeignClient(name = "roomContributionBalanceClient", url = "${feign.other.url}" +
|
||||
RoomContributionBalanceClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "roomContributionBalanceClient", name = "rc-service-other", url = "${feign.other.url:}", path = RoomContributionBalanceClientApi.API_PREFIX)
|
||||
public interface RoomContributionBalanceClient extends RoomContributionBalanceClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -6,8 +6,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
/**
|
||||
* @author pengliang on 2023/5/31
|
||||
*/
|
||||
@FeignClient(name = "roomProfileClient", url = "${feign.other.url}" +
|
||||
RoomManagerClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "roomProfileClient", name = "rc-service-other", url = "${feign.other.url:}", path = RoomManagerClientApi.API_PREFIX)
|
||||
public interface RoomManagerClient extends RoomManagerClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/11/22
|
||||
*/
|
||||
@FeignClient(name = "roomMemberClient", url = "${feign.other.url}" +
|
||||
RoomMemberClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "roomMemberClient", name = "rc-service-other", url = "${feign.other.url:}", path = RoomMemberClientApi.API_PREFIX)
|
||||
public interface RoomMemberClient extends RoomMemberClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -6,8 +6,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
/**
|
||||
* @author lisizhe on 2023/9/31
|
||||
*/
|
||||
@FeignClient(name = "roomMikeTypeClient", url = "${feign.other.url}" +
|
||||
RoomMikeTypeClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "roomMikeTypeClient", name = "rc-service-other", url = "${feign.other.url:}", path = RoomMikeTypeClientApi.API_PREFIX)
|
||||
public interface RoomMikeTypeClient extends RoomMikeTypeClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/11/17
|
||||
*/
|
||||
@FeignClient(name = "roomTouristClient", url = "${feign.other.url}" +
|
||||
RoomTouristClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "roomTouristClient", name = "rc-service-other", url = "${feign.other.url:}", path = RoomTouristClientApi.API_PREFIX)
|
||||
public interface RoomTouristClient extends RoomTouristClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/8/11
|
||||
*/
|
||||
@FeignClient(name = "roomUserBlacklistClient", url = "${feign.other.url}" +
|
||||
RoomUserBlacklistClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "roomUserBlacklistClient", name = "rc-service-other", url = "${feign.other.url:}", path = RoomUserBlacklistClientApi.API_PREFIX)
|
||||
public interface RoomUserBlacklistClient extends RoomUserBlacklistClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/6/3
|
||||
*/
|
||||
@FeignClient(name = "giftBackpackClient", url = "${feign.other.url}" +
|
||||
GiftBackpackClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "giftBackpackClient", name = "rc-service-other", url = "${feign.other.url:}", path = GiftBackpackClientApi.API_PREFIX)
|
||||
public interface GiftBackpackClient extends GiftBackpackClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/5/23
|
||||
*/
|
||||
@FeignClient(name = "giftConfigClient", url = "${feign.other.url}" +
|
||||
GiftConfigClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "giftConfigClient", name = "rc-service-other", url = "${feign.other.url:}", path = GiftConfigClientApi.API_PREFIX)
|
||||
public interface GiftConfigClient extends GiftConfigClientApi {
|
||||
|
||||
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/8/18
|
||||
*/
|
||||
@FeignClient(name = "giftCountAnchorDailyClient", url = "${feign.other.url}" +
|
||||
GiftCountAnchorDailyClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "giftCountAnchorDailyClient", name = "rc-service-other", url = "${feign.other.url:}", path = GiftCountAnchorDailyClientApi.API_PREFIX)
|
||||
public interface GiftCountAnchorDailyClient extends GiftCountAnchorDailyClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/8/19
|
||||
*/
|
||||
@FeignClient(name = "giftGiveRunningWaterClient", url = "${feign.other.url}" +
|
||||
GiftGiveRunningWaterClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "giftGiveRunningWaterClient", name = "rc-service-other", url = "${feign.other.url:}", path = GiftGiveRunningWaterClientApi.API_PREFIX)
|
||||
public interface GiftGiveRunningWaterClient extends GiftGiveRunningWaterClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/6/3
|
||||
*/
|
||||
@FeignClient(name = "badgeBackpackClient", url = "${feign.other.url}" +
|
||||
BadgeBackpackClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "badgeBackpackClient", name = "rc-service-other", url = "${feign.other.url:}", path = BadgeBackpackClientApi.API_PREFIX)
|
||||
public interface BadgeBackpackClient extends BadgeBackpackClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/6/6
|
||||
*/
|
||||
@FeignClient(name = "badgeSourceClient", url = "${feign.other.url}" +
|
||||
BadgeSourceClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "badgeSourceClient", name = "rc-service-other", url = "${feign.other.url:}", path = BadgeSourceClientApi.API_PREFIX)
|
||||
public interface BadgeSourceClient extends BadgeSourceClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/6/5
|
||||
*/
|
||||
@FeignClient(name = "emojiBackpackClient", url = "${feign.other.url}" +
|
||||
EmojiBackpackClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "emojiBackpackClient", name = "rc-service-other", url = "${feign.other.url:}", path = EmojiBackpackClientApi.API_PREFIX)
|
||||
public interface EmojiBackpackClient extends EmojiBackpackClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/6/10
|
||||
*/
|
||||
@FeignClient(name = "emojiConfigClient", url = "${feign.other.url}" +
|
||||
EmojiConfigClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "emojiConfigClient", name = "rc-service-other", url = "${feign.other.url:}", path = EmojiConfigClientApi.API_PREFIX)
|
||||
public interface EmojiConfigClient extends EmojiConfigClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/6/3
|
||||
*/
|
||||
@FeignClient(name = "fragmentsBackpackClient", url = "${feign.other.url}" +
|
||||
FragmentsBackpackClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "fragmentsBackpackClient", name = "rc-service-other", url = "${feign.other.url:}", path = FragmentsBackpackClientApi.API_PREFIX)
|
||||
public interface FragmentsBackpackClient extends FragmentsBackpackClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -9,8 +9,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
* @author system
|
||||
* @date 2025-11-07
|
||||
*/
|
||||
@FeignClient(name = "propCouponClient", url = "${feign.other.url}" +
|
||||
PropCouponClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "propCouponClient", name = "rc-service-other", url = "${feign.other.url:}", path = PropCouponClientApi.API_PREFIX)
|
||||
public interface PropCouponClient extends PropCouponClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author zongpubin on 2023/10/11
|
||||
*/
|
||||
@FeignClient(name = "propsActivityRewardConfigClient", url = "${feign.other.url}" +
|
||||
PropsActivityRewardConfigClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "propsActivityRewardConfigClient", name = "rc-service-other", url = "${feign.other.url:}", path = PropsActivityRewardConfigClientApi.API_PREFIX)
|
||||
public interface PropsActivityRewardConfigClient extends PropsActivityRewardConfigClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author zongpubin on 2023/10/23
|
||||
*/
|
||||
@FeignClient(name = "propsActivityRewardGroupClient", url = "${feign.other.url}" +
|
||||
PropsActivityRewardGroupClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "propsActivityRewardGroupClient", name = "rc-service-other", url = "${feign.other.url:}", path = PropsActivityRewardGroupClientApi.API_PREFIX)
|
||||
public interface PropsActivityRewardGroupClient extends PropsActivityRewardGroupClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/6/3
|
||||
*/
|
||||
@FeignClient(name = "propsBackpackClientClient", url = "${feign.other.url}" +
|
||||
PropsBackpackClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "propsBackpackClientClient", name = "rc-service-other", url = "${feign.other.url:}", path = PropsBackpackClientApi.API_PREFIX)
|
||||
public interface PropsBackpackClient extends PropsBackpackClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/11/7
|
||||
*/
|
||||
@FeignClient(name = "propsCommodityStoreClient", url = "${feign.other.url}" +
|
||||
PropsCommodityStoreClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "propsCommodityStoreClient", name = "rc-service-other", url = "${feign.other.url:}", path = PropsCommodityStoreClientApi.API_PREFIX)
|
||||
public interface PropsCommodityStoreClient extends PropsCommodityStoreClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/11/7
|
||||
*/
|
||||
@FeignClient(name = "propsNobleVipClient", url = "${feign.other.url}" +
|
||||
PropsNobleVipClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "propsNobleVipClient", name = "rc-service-other", url = "${feign.other.url:}", path = PropsNobleVipClientApi.API_PREFIX)
|
||||
public interface PropsNobleVipClient extends PropsNobleVipClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author zongpubin on 2024/1/29
|
||||
*/
|
||||
@FeignClient(name = "propsRedPacketSkinClient", url = "${feign.other.url}" +
|
||||
PropsRedPacketSkinClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "propsRedPacketSkinClient", name = "rc-service-other", url = "${feign.other.url:}", path = PropsRedPacketSkinClientApi.API_PREFIX)
|
||||
public interface PropsRedPacketSkinClient extends PropsRedPacketSkinClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/11/7
|
||||
*/
|
||||
@FeignClient(name = "propsRunningWaterClient", url = "${feign.other.url}" +
|
||||
PropsRunningWaterClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "propsRunningWaterClient", name = "rc-service-other", url = "${feign.other.url:}", path = PropsRunningWaterClientApi.API_PREFIX)
|
||||
public interface PropsRunningWaterClient extends PropsRunningWaterClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/11/7
|
||||
*/
|
||||
@FeignClient(name = "propsSourceClient", url = "${feign.other.url}" +
|
||||
PropsSourceClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "propsSourceClient", name = "rc-service-other", url = "${feign.other.url:}", path = PropsSourceClientApi.API_PREFIX)
|
||||
public interface PropsSourceClient extends PropsSourceClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/8/10
|
||||
*/
|
||||
@FeignClient(name = "propsStealthBrowseClient", url = "${feign.other.url}" +
|
||||
PropsStealthBrowseClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "propsStealthBrowseClient", name = "rc-service-other", url = "${feign.other.url:}", path = PropsStealthBrowseClientApi.API_PREFIX)
|
||||
public interface PropsStealthBrowseClient extends PropsStealthBrowseClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/6/3
|
||||
*/
|
||||
@FeignClient(name = "propsStoreClient", url = "${feign.other.url}" +
|
||||
PropsToolClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "propsStoreClient", name = "rc-service-other", url = "${feign.other.url:}", path = PropsToolClientApi.API_PREFIX)
|
||||
public interface PropsToolClient extends PropsToolClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/6/3
|
||||
*/
|
||||
@FeignClient(name = "roomBadgeClient", url = "${feign.other.url}" +
|
||||
RoomBadgeClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "roomBadgeClient", name = "rc-service-other", url = "${feign.other.url:}", path = RoomBadgeClientApi.API_PREFIX)
|
||||
public interface RoomBadgeClient extends RoomBadgeClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/6/6
|
||||
*/
|
||||
@FeignClient(name = "roomThemeBackpackClient", url = "${feign.other.url}" +
|
||||
RoomThemeBackpackClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "roomThemeBackpackClient", name = "rc-service-other", url = "${feign.other.url:}", path = RoomThemeBackpackClientApi.API_PREFIX)
|
||||
public interface RoomThemeBackpackClient extends RoomThemeBackpackClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/6/6
|
||||
*/
|
||||
@FeignClient(name = "roomThemeCustomizeBackpackClient", url = "${feign.other.url}" +
|
||||
RoomThemeCustomizeBackpackClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "roomThemeCustomizeBackpackClient", name = "rc-service-other", url = "${feign.other.url:}", path = RoomThemeCustomizeBackpackClientApi.API_PREFIX)
|
||||
public interface RoomThemeCustomizeBackpackClient extends RoomThemeCustomizeBackpackClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/12/4
|
||||
*/
|
||||
@FeignClient(name = "roomThemeStoreClient", url = "${feign.other.url}" +
|
||||
RoomThemeStoreClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "roomThemeStoreClient", name = "rc-service-other", url = "${feign.other.url:}", path = RoomThemeStoreClientApi.API_PREFIX)
|
||||
public interface RoomThemeStoreClient extends RoomThemeStoreClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/12/4
|
||||
*/
|
||||
@FeignClient(name = "roomThemeUserBackpackClient", url = "${feign.other.url}" +
|
||||
RoomThemeUserBackpackClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "roomThemeUserBackpackClient", name = "rc-service-other", url = "${feign.other.url:}", path = RoomThemeUserBackpackClientApi.API_PREFIX)
|
||||
public interface RoomThemeUserBackpackClient extends RoomThemeUserBackpackClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/12/4
|
||||
*/
|
||||
@FeignClient(name = "roomThemeUserCustomizeClient", url = "${feign.other.url}" +
|
||||
RoomThemeUserCustomizeClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "roomThemeUserCustomizeClient", name = "rc-service-other", url = "${feign.other.url:}", path = RoomThemeUserCustomizeClientApi.API_PREFIX)
|
||||
public interface RoomThemeUserCustomizeClient extends RoomThemeUserCustomizeClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
* @author xiaofei
|
||||
* @since 2024-04-12
|
||||
*/
|
||||
@FeignClient(name = "petPoolClient", url = "${feign.other.url}" + PetPoolClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "petPoolClient", name = "rc-service-other", url = "${feign.other.url:}", path = PetPoolClientApi.API_PREFIX)
|
||||
public interface PetPoolClient extends PetPoolClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -9,8 +9,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
* @author system
|
||||
* @date 2025-01-15
|
||||
*/
|
||||
@FeignClient(name = "rocketConfigClient", url = "${feign.other.url}" +
|
||||
RocketConfigClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "rocketConfigClient", name = "rc-service-other", url = "${feign.other.url:}", path = RocketConfigClientApi.API_PREFIX)
|
||||
public interface RocketConfigClient extends RocketConfigClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author pengliang on 2023/8/11
|
||||
*/
|
||||
@FeignClient(name = "administratorClient", url = "${feign.other.url}" +
|
||||
AdministratorClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "administratorClient", name = "rc-service-other", url = "${feign.other.url:}", path = AdministratorClientApi.API_PREFIX)
|
||||
public interface AdministratorClient extends AdministratorClientApi {
|
||||
|
||||
}
|
||||
|
||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
||||
*
|
||||
* @author lisizhe on 2023/5/24
|
||||
*/
|
||||
@FeignClient(name = "anchorSalaryExchangeGoldClient", url = "${feign.other.url}" +
|
||||
AnchorSalaryExchangeGoldClientApi.API_PREFIX)
|
||||
@FeignClient(contextId = "anchorSalaryExchangeGoldClient", name = "rc-service-other", url = "${feign.other.url:}", path = AnchorSalaryExchangeGoldClientApi.API_PREFIX)
|
||||
public interface AnchorSalaryExchangeGoldClient extends AnchorSalaryExchangeGoldClientApi {
|
||||
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user