@Slf4j
@Component
@Order(Integer.MIN_VALUE)
public class NacosRegisterServiceInit implements CommandLineRunner {
@Autowired
private NacosDiscoveryProperties nacosDiscoveryProperties;
@Autowired
private NacosServiceManager nacosServiceManager;
@Override
public void run(String... args) throws Exception {
//注册服务
registerInstance(nacosDiscoveryProperties,nacosServiceManager);
//服务下线
nacosShutdownHook(nacosDiscoveryProperties,nacosServiceManager);
spring boot nacos 手动注册
最新推荐文章于 2024-09-09 10:58:48 发布