Windows 安装springcloud Nacos2.0.3配置连接IDEA一篇搞定
怎末说呢,耗时两天大概把能踩得坑都踩了
1,下载安装
地址
https://github.com/alibaba/nacos/releases
拉到下面找到这里,下载安装
启动服务器
Linux/Unix/Mac
启动命令(standalone代表着单机模式运行,非集群模式):
sh startup.sh -m standalone
如果您使用的是ubuntu系统,或者运行脚本报错提示[[符号找不到,可尝试如下运行:
bash startup.sh -m standalone
Windows
启动命令(standalone代表着单机模式运行,非集群模式):
startup.cmd -m standalone
找到文件的bin下的startup.cmd 文本打开修改如上
双击启动
至此nacos可以正常启动,
登录
账号密码均为:nacos
bootstrap.yml配置
spring: application: name: com.ebiz.han.user//对应Data ID cloud: nacos: config: server-addr: 127.0.0.1:8848 file-extension: yaml//对应nacos配置的后缀
注意暂时只支持yaml和properties格式
在创建springcloud项目时,最需要注意的问题就是版本对应的问题,请仔细看如下:
上面比较杂,下面来回顾一个完整配置,建项目就不展示了
Data ID
依赖
-
org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-test test com.alibaba.cloud spring-cloud-starter-alibaba-nacos-config 2.2.1.RELEASE com.alibaba.cloud spring-cloud-starter-alibaba-nacos-discovery 2.2.1.RELEASE org.springframework.boot spring-boot-starter-test test org.springframework.cloud spring-cloud-starter-openfeign 2.2.4.RELEASE
server-addr :nacos地址, 127.0.0.1等价于localhost, 主机地址
注意:bootstrap为nacos的默认配置,也就是说idea会去找bootstrap.yml而不是application,application相当于整个项目的全局配置
、
ConfigController
package com.ebiz.nacos.controller;
?
import org.springframework.beans.factory.annotation.Value;
import org.springframework.cloud.context.config.annotation.RefreshScope;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
?
@RestController
@RequestMapping("/config")
@RefreshScope
public class ConfigController {
?
@Value("${user:false}")
private String user;
?
@RequestMapping(value = "/get",method = RequestMethod.GET)
public String get(){
return user;
}
}
请求成功
这里我用的postman软件,感兴趣可以去下载!