feat():添加了查询用户的接口

master
zhang chengzhi 2024-08-05 20:20:42 +08:00
parent 16354adcf3
commit 1555b65dcf
2 changed files with 25 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.remote.service.NacosServerService;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
/**
* @Authorzhangchengzhi
* @Packagecom.muyu.common.nacos.remote
* @Projectcloud-common-nacos-remote
* @nameNacosRemoteConfig
* @Date2024/8/5 20:05
*/
@Configuration
@ForestScan(basePackages = "com.muyu.common.nacos.remote")
@Import(value = {
NacosNamespaceInterceptor.class,
NacosServerService.class
})
public class NacosRemoteConfig {
}

View File

@ -1 +1,2 @@
com.muyu.common.nacos.remote.interceptor.NacosNamespaceInterceptor com.muyu.common.nacos.remote.interceptor.NacosNamespaceInterceptor
com.muyu.common.nacos.NacosRemoteConfig