fix():修复了nacosService

master
chentaisen 2024-08-08 21:41:37 +08:00
parent 034501788d
commit 017da86951
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
package com.muyu.common.nacos;
import com.dtflys.forest.springboot.annotation.ForestScan;
import com.muyu.common.nacos.remote.interceptor.NacosNamespaceInterceptor;
import com.muyu.common.nacos.service.NacosServerService;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
/**
* @ClassName NacosRemoteConfig
* @Description nacos
* @Author Chen
* @Date 2024/8/8 21:39
*/
@Configuration
@ForestScan(basePackages = "com.muyu.common.nacos.remote")
@Import(value = {
NacosNamespaceInterceptor.class,
NacosServerService.class
}
)
public class NacosRemoteConfig {
}