美文网首页
3. 创建服务提供者

3. 创建服务提供者

作者: 七月_JulyFY | 来源:发表于2019-08-23 10:18 被阅读0次

    服务提供者: 数据访问层操作

    服务消费者: 业务访问层还有提供 restfull 风格的接口

    前后分离:前端不能用 Thymeleaf 等模板 只能用与后端无关的技术 Node.js+Vue+axious

    点击 hello-spring-cloud-alibaba 右键新建目录 即创建一个工程 名为 hello-spring-cloud-alibaba-nacos-provider 的服务提供者项目,pom.xml 配置如下:(与依赖管理创建一样托管给Maven)

    <?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
        <modelVersion>4.0.0</modelVersion>
    
        <parent>
            <groupId>com.test</groupId>
            <artifactId>hello-spring-cloud-alibaba-dependencies</artifactId>
            <version>1.0.0-SNAPSHOT</version>
            <relativePath>../hello-spring-cloud-alibaba-dependencies/pom.xml</relativePath>
        </parent>
    
        <artifactId>hello-spring-cloud-alibaba-nacos-provider</artifactId>
        <packaging>jar</packaging>
    
        <name>hello-spring-cloud-alibaba-nacos-provider</name>
        <inceptionYear>2018-Now</inceptionYear>
    
        <dependencies>
            <!-- Spring Boot Begin -->
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-web</artifactId>
            </dependency>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-actuator</artifactId>
            </dependency>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-test</artifactId>
                <scope>test</scope>
            </dependency>
            <!-- Spring Boot End -->
    
            <!-- Spring Cloud Begin 服务与注册发现依赖-->
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
            </dependency>
            <!-- Spring Cloud End -->
        </dependencies>
        <!-- 打包成 jar 包 运行时 告诉程序的入口-->
        <build>
            <plugins>
                <plugin>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-maven-plugin</artifactId>
                    <configuration>
                        <mainClass>com.test.hello.spring.cloud.alibaba.nacos.provider.NacosProviderApplication</mainClass>
                    </configuration>
                </plugin>
            </plugins>
        </build>
    </project>
    

    创建 Application (点击项目 新建 /src/main/java 目录,java 目录下新建package----com.test.hello.spring.cloud.alibaba.nacos.provider 项目名命名,在包下 新建 NacosProviderApplication 类)

    通过 @EnableDiscoveryClient 注解表明是一个 Nacos 客户端,该注解是 Spring Cloud 提供的原生注解
    package com.test.hello.spring.cloud.alibaba.nacos.provider;
    
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
    
    @SpringBootApplication
    @EnableDiscoveryClient
    public class NacosProviderApplication {
    
        public static void main(String[] args) {
            SpringApplication.run(NacosProviderApplication.class,args);
        }
    }
    

    application.yml (新建 /src/main/resources,resources 目录下创建 application.yml)

    # 项目名 即服务名
    spring:
      application:
        name: nacos-provider
      # 服务注册与发现的地址配置
      cloud:
        nacos:
          discovery:
            server-addr: localhost:8848
    server:
      port: 8081
    
    # 健康检查
    management:
      endpoints:
        web:
          exposure:
            include: "*"
    

    写一个测试 Controller

    package com.test.hello.spring.cloud.alibaba.nacos.provider.controller;
    
    import org.springframework.beans.factory.annotation.Value;
    import org.springframework.web.bind.annotation.GetMapping;
    import org.springframework.web.bind.annotation.PathVariable;
    import org.springframework.web.bind.annotation.RestController;
    
    @RestController
    public class ProviderController {
        
        // 从 application.yml 配置中获取值
        @Value("${server.port}")
        private String port;
    
        @GetMapping(value = "hi/{message}")
        public String echo(@PathVariable("message") String messsge){
            return "hello-nacos-"+messsge+":"+port;
        }
    }
    

    启动工程

    通过浏览器访问 http://localhost:8848/nacos,即 Nacos Server 网址 可以看到服务已经注册在服务中了,服务名为 nacos-provider
    http://localhost:8081/echo/hi/111 ,你会在浏览器上看到
    hello-nacos-111:8081
    

    服务的端点检查 健康检查

    spring-cloud-starter-alibaba-nacos-discovery 在实现的时候提供了一个 EndPoint, EndPoint 的访问地址为 http://ip:port/actuator/nacos-discovery。 EndPoint 的信息主要提供了两类:
    1、subscribe: 显示了当前有哪些服务订阅者
    2、NacosDiscoveryProperties: 显示了当前服务实例关于 Nacos 的基础配置
    
    输入:http://localhost:8081/actuator/nacos-discovery 可以看到 json 格式的数据
    {
        "subscribe": [],
        "NacosDiscoveryProperties": {
            "serverAddr": "127.0.0.1:8848",
            "endpoint": "",
            "namespace": "",
            "logName": "",
            "service": "nacos-provider",
            "weight": 1,
            "clusterName": "DEFAULT",
            "namingLoadCacheAtStart": "false",
            "metadata": {},
            "registerEnabled": true,
            "ip": "192.168.184.1",
            "networkInterface": "",
            "port": 8081,
            "secure": false,
            "accessKey": "",
            "secretKey": ""
        }
    }
    

    Nacos Starter 更多配置项信息 即在 application.yml 配置

    配置项 Key 默认值 说明
    服务端地址 spring.cloud.nacos.discovery.server-addr Nacos Server 启动监听的ip地址和端口
    服务名 spring.cloud.nacos.discovery.service ${spring.application.name} 给当前的服务命名
    权重 spring.cloud.nacos.discovery.weight 1 取值范围 1 到 100,数值越大,权重越大
    网卡名 spring.cloud.nacos.discovery.network-interface 当IP未配置时,注册的IP为此网卡所对应的IP地址,如果此项也未配置,则默认取第一块网卡的地址
    注册的IP地址 spring.cloud.nacos.discovery.ip 优先级最高
    注册的端口 spring.cloud.nacos.discovery.port -1 默认情况下不用配置,会自动探测
    命名空间 spring.cloud.nacos.discovery.namespace 常用场景之一是不同环境的注册的区分隔离,例如开发测试环境和生产环境的资源(如配置、服务)隔离等。
    AccessKey spring.cloud.nacos.discovery.access-key 当要上阿里云时,阿里云上面的一个云账号名
    SecretKey spring.cloud.nacos.discovery.secret-key 当要上阿里云时,阿里云上面的一个云账号密码
    Metadata spring.cloud.nacos.discovery.metadata 使用 Map 格式配置,用户可以根据自己的需要自定义一些和服务相关的元数据信息
    日志文件名 spring.cloud.nacos.discovery.log-name
    接入点 spring.cloud.nacos.discovery.enpoint UTF-8 地域的某个服务的入口域名,通过此域名可以动态地拿到服务端地址
    是否集成 Ribbon ribbon.nacos.enabled true 一般都设置成 true 即可

    相关文章

      网友评论

          本文标题:3. 创建服务提供者

          本文链接:https://www.haomeiwen.com/subject/ryinsctx.html