赞
踩
官网地址:Nacos 快速开始
首先查看springcloud alibaba版本及对应的nacos版本
这里springcloud alibaba的版本为2.2.6.RELEASE
下载地址:Releases · alibaba/nacos · GitHub
选择对应版本的压缩包下载
解压缩后的文件目录
conf 中为配置文件
双击bin/stratup.cmd启动
启动成功
nacos登录界面
账号密码默认nacos
操作面板
父工程中新建模块
在serviceA的pom.xml中添加nacos依赖
- <!--nacos discovery依赖-->
- <dependency>
- <groupId>com.alibaba.cloud</groupId>
- <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
- </dependency>
在启动类添加nacos扫描类注解@EnableDiscoveryClient
- @SpringBootApplication
- @EnableDiscoveryClient
- public class ServiceAApplication {
-
- public static void main(String[] args) {
- SpringApplication.run(ServiceAApplication.class, args);
- }
-
- }
配置文件中配置application.properties
spring.application.name=demo-service spring.cloud.nacos.discovery.server-addr=127.0.0.1:8848
设置服务名称和nacos地址
接口demo
- package com.example.servicea.controller;
-
- import org.springframework.web.bind.annotation.GetMapping;
- import org.springframework.web.bind.annotation.RestController;
-
- @RestController
- public class DemoController {
- @GetMapping(value = "/hello")
- public String hello(){
- return "hello";
- }
- }
访问接口后,便可在服务列表查到
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。