增加sczx_car服务的路由映射,增加请求响应的日志
This commit is contained in:
@ -1,11 +1,13 @@
|
||||
package com.sczx.gateway.component;
|
||||
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.cloud.gateway.event.RefreshRoutesEvent;
|
||||
import org.springframework.context.ApplicationEventPublisher;
|
||||
import org.springframework.scheduling.annotation.Scheduled;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
@Slf4j
|
||||
@Component
|
||||
public class DynamicRouteScheduler {
|
||||
|
||||
@ -15,6 +17,7 @@ public class DynamicRouteScheduler {
|
||||
// 每30秒刷新一次路由(可按需调整)
|
||||
@Scheduled(fixedRate = 30_000)
|
||||
public void refreshRoutes() {
|
||||
log.info("refreshRoutes");
|
||||
publisher.publishEvent(new RefreshRoutesEvent(this));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user