Live2D

spring-boot 配置中心 nacos 简易部署+ 手把手教

最近搞一个配置中心,看了很多大牛的讲解愣是没有学会,于是终于学废了~.~

再后来,使用了一个简单的方法,版本啥的也没管,然后就成了~,特此记录一下(炫耀一下。。。)

1、项目创建

  1)idea中创建项目 选择创建springboot的项目:

                                           

 

 

  2)选择java8,填写项目名demo后点击next

                                           

  3)选择web的,就这一个就行,因为是服务,需要一直启动。然后点击next再点击finish结束。

            

  

  4)配置pom(依赖就这四个就行)

  

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.3.4.RELEASE</version>   <!-- Spring Boot版本要低于2.4,否则启动应用会报错-->
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.example</groupId>
    <artifactId>centers</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>centers</name>
    <description>Demo project for Spring Boot</description>
    <properties>
        <java.version>1.8</java.version>
    </properties>
 
    <dependencies>
    <!-- nacos -->
    <dependency>
        <groupId>com.alibaba.cloud</groupId>
        <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
        <version>2.2.1.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>com.alibaba.cloud</groupId>
        <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
        <version>2.2.1.RELEASE</version>
    </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
 
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
 
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
 
</project>

  如果你没有仓库可以下载这些依赖,那配置一下alibaba的库,一个就够用了。

 

  5)创建boostrap.yml

复制代码
spring:
  application:
    name: nacos-config
    ## 当前环境,这个和dataId有关-> ${prefix}-${spring.profiles.active}.${file-extension}
   ## profiles: active: dev cloud: nacos: config: ## nacos的地址,作为配置中心 server-addr: 127.0.0.1:8848 ## 配置内容的数据格式,目前只支持 properties 和 yaml 类型,这个和dataId有关-> ${prefix}-${spring.profiles.active}.${file-extension} file-extension: properties management: endpoints: web: exposure: ## yml文件中存在特殊字符,必须用单引号包含,否则启动报错 include: '*'
复制代码

上面三个有颜色的文字后面有用(nacos中的配置文件名:nacos-config-dev.properties)

  6)创建测试类

  

复制代码
package com.example.centers;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.cloud.context.config.annotation.RefreshScope;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
//refreshscope这个注解用于动态加载配置,即你远程改了配置后立即生效,不加的话,每次改都要重启项目 @RestController @RefreshScope @RequestMapping("/nacos") public class NacosController { @Value("${config.version}") private String version; @GetMapping("/test/{id}") public String test(@PathVariable("id")Integer id){ return "accept one msg id="+id+"----- version="+version; } }
复制代码

 

  7)项目最终结构:   

                                                 

 

 

 

 2、nacos下载、启动、配置项

   1)下载地址:https://github.com/alibaba/nacos/releases 使劲向下划,找到zip,这个是windows上启动的,上面gz的那个是linux上用的。

      

 

 

 

   2)启动:

    解压后进入bin目录,双击startup.cmd ,等一会弹出运行框。

      出现  2022-04-15 21:29:36,967 INFO Completed initialization in 6 ms  就是启动完成了。

   3)配置:

      启动完成后,进入http://localhost:8848/nacos

      1)点击新增的加号

        

       2)填写信息,照着填写,然后点击发布,就好了

        

3、测试

    1)启动项目

    2)浏览器输入:http://localhost:8080/nacos2/test/1

      页面显示:accept one msg id=1----- version=1314

      大功告成!!

    3)修改一下nacos的nacos-config-deb.properties配置里的值,随便设置一个值,如:

      
1
config.version=110

    4)刷新浏览器的页面发现,页面显示:accept one msg id=1----- version=110

      完美~!

      完美~!

      完美~!

 

      

nacos还可以链接mysql、还可以作为注册中心、还可以配置分布式的等等,要学习的地方还有很多~!

 

posted @   -涂涂-  阅读(511)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· DeepSeek 开源周回顾「GitHub 热点速览」
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
历史上的今天:
2019-04-15 eclipse乱码解决
点击右上角即可分享
微信分享提示