springcloud-alibaba (04)Gateway与Nacos结合使用
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.context.config.annotation.RefreshScope;
@SpringBootApplication
@EnableDiscoveryClient
@RefreshScope
public class GatewayApplication {
public static void main(String[] args) {
SpringApplication.run(GatewayApplication.class, args);
}
}
这段代码展示了如何创建一个使用Spring Cloud Alibaba技术栈的Spring Cloud Gateway服务,并将其注册到Nacos服务注册中心。@EnableDiscoveryClient
注解使得服务可以被Nacos发现与管理。@RefreshScope
注解允许配置在运行时更新。这是微服务架构中常用的一个模式。
评论已关闭