20 lines
569 B
Java
20 lines
569 B
Java
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.NacosService;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.context.annotation.Import;
|
|
|
|
/**
|
|
* nacos远程调用启动类
|
|
*/
|
|
@Configuration
|
|
@ForestScan(basePackages = "com.muyu.common.nacos.remote")
|
|
@Import(value = {
|
|
NacosNamespaceInterceptor.class,
|
|
NacosService.class
|
|
})
|
|
public class NacosRemoteConfig {
|
|
}
|