From a73ef74a7b215299d2e6be291266d7cc1c3da85c Mon Sep 17 00:00:00 2001 From: eight <641137800@qq.com> Date: 星期二, 26 十一月 2024 22:29:53 +0800 Subject: [PATCH] queue表 增加 episode_id 字段 --- jh-server/src/main/java/cn/lihu/jh/server/JhServerApplication.java | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/jh-server/src/main/java/cn/lihu/jh/server/JhServerApplication.java b/jh-server/src/main/java/cn/lihu/jh/server/JhServerApplication.java index c888d65..c4cd3a1 100644 --- a/jh-server/src/main/java/cn/lihu/jh/server/JhServerApplication.java +++ b/jh-server/src/main/java/cn/lihu/jh/server/JhServerApplication.java @@ -2,6 +2,7 @@ import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.cloud.openfeign.EnableFeignClients; /** * 椤圭洰鐨勫惎鍔ㄧ被 @@ -14,6 +15,7 @@ */ @SuppressWarnings("SpringComponentScan") // 蹇界暐 IDEA 鏃犳硶璇嗗埆 ${jh.info.base-package} @SpringBootApplication(scanBasePackages = {"${jh.info.base-package}.server", "${jh.info.base-package}.module"}) +@EnableFeignClients(basePackages = "cn.lihu.jh.module.ecg.feign") public class JhServerApplication { public static void main(String[] args) { -- Gitblit v1.9.3