微服务专题之SpringBoot2.X整合Nacos作为配置中心

pom.xml

<?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>


    <groupId>com.sino.microservice</groupId>

    <artifactId>appw</artifactId>

    <version>0.0.1-SNAPSHOT</version>

    <name>appw</name>

    <description>Demo project for Spring Boot</description>


    <properties>

        <java.version>1.8</java.version>

        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

        <maven.compiler.source>8</maven.compiler.source>

        <maven.compiler.target>8</maven.compiler.target>

        <spring.boot.version>2.3.2.RELEASE</spring.boot.version>

        <spring.cloud.alibaba.version>2.2.3.RELEASE</spring.cloud.alibaba.version>

    </properties>


    <!-- 定义Srping Boot版本和alibaba cloud版本  -->

    <dependencyManagement>

        <dependencies>

            <dependency>

                <groupId>org.springframework.boot</groupId>

                <artifactId>spring-boot-dependencies</artifactId>

                <version>${spring.boot.version}</version>

                <type>pom</type>

                <scope>import</scope>

            </dependency>

            <dependency>

                <groupId>com.alibaba.cloud</groupId>

                <artifactId>spring-cloud-alibaba-dependencies</artifactId>

                <version>${spring.cloud.alibaba.version}</version>

                <type>pom</type>

                <scope>import</scope>

            </dependency>

        </dependencies>

    </dependencyManagement>

    <dependencies>

        <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>

        </dependency>

        <!-- 注册中心需要引入的依赖  -->

        <dependency>

            <groupId>com.alibaba.cloud</groupId>

            <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>

        </dependency>

        <!-- 配置中心需要引入的依赖  -->

        <dependency>

            <groupId>com.alibaba.cloud</groupId>

            <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>

        </dependency>

    </dependencies>

    <build>

        <finalName>appw</finalName>

        <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->

            <plugins>

                <plugin>

                    <artifactId>maven-clean-plugin</artifactId>

                    <version>3.1.0</version>

                </plugin>


                <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging -->

                <plugin>

                    <artifactId>maven-resources-plugin</artifactId>

                    <version>3.0.2</version>

                </plugin>


                <plugin>

                    <artifactId>maven-compiler-plugin</artifactId>

                    <version>3.8.0</version>

                </plugin>


                <plugin>

                    <artifactId>maven-surefire-plugin</artifactId>

                    <version>2.22.1</version>

                </plugin>


                <plugin>

                    <artifactId>maven-war-plugin</artifactId>

                    <version>3.2.2</version>

                </plugin>


                <plugin>

                    <artifactId>maven-install-plugin</artifactId>

                    <version>2.5.2</version>

                </plugin>


                <plugin>

                    <artifactId>maven-deploy-plugin</artifactId>

                    <version>2.8.2</version>

                </plugin>

            </plugins>

        </pluginManagement>

    </build>

</project>



bootstrap.properties

# bootstrap由父Spring ApplicationContext加载。父ApplicationContext被加载到使用application的之前。

# 当使用 Spring Cloud 的时候,配置信息一般是从 config server 加载的,为了取得配置信息(比如密码等),你需要一些提早的或引导配置。

# 因此,把 config server 信息放在 bootstrap,用来加载真正需要的配置信息

server.port=8070

spring.application.name=consumer-config


#注册中心地址配置

spring.cloud.nacos.discovery.server-addr=127.0.0.1:8848

#配置中心地址配置

spring.cloud.nacos.config.server-addr=127.0.0.1:8848


#定义环境为dev

spring.profiles.active=dev

#定义配置文件后缀为.properties, dataId=${spring.application.name}-${spring.profiles.active}.properties

spring.cloud.nacos.config.file-extension=properties

#配置文件默认分组为DEFAULT_GROUP

spring.cloud.nacos.config.group=Dev


TestNacosControl.java

package com.sino.microservice.appw.ctrl;


import org.springframework.beans.factory.annotation.Value;

import org.springframework.cloud.context.config.annotation.RefreshScope;

import org.springframework.stereotype.Controller;

import org.springframework.web.bind.annotation.RequestMapping;

import org.springframework.web.bind.annotation.RestController;


import javax.annotation.PostConstruct;


@RestController

@RefreshScope

public class TestNacosControl {

    @Value("${test.nacos}")

    private String testNacos;


    @PostConstruct

    public void printNacosConfig(){

        System.out.println("从Nacos获取到的配置为:" + testNacos);

    }


    @RequestMapping("/test-nacos")

    public String getTestNacos(){

        return testNacos;

    }

}


AppwStarter.java

package com.sino.microservice.appw;


import org.springframework.boot.SpringApplication;

import org.springframework.boot.autoconfigure.SpringBootApplication;


@SpringBootApplication

public class AppwStarter {

    public static void main(String[] args) {

        System.out.println("hello Appw");


        System.setProperty("ignoreUnresolvablePlaceholders", "true");

        SpringApplication.run(AppwStarter.class, args);

    }

}


猜你喜欢

转载自blog.51cto.com/14960630/2572003