涡轮机不适用于 spring boot 2.0.6 和 spring cloud Finchley.SR1

Posted

技术标签:

【中文标题】涡轮机不适用于 spring boot 2.0.6 和 spring cloud Finchley.SR1【英文标题】:Turbine not working with spring boot 2.0.6 and spring cloud Finchley.SR1 【发布时间】:2019-03-26 17:30:18 【问题描述】:

我正在尝试实现一个将使用涡轮机的简单服务,但它不起作用 - 涡轮机没有从其他 Hystrix 使用的服务中获取任何数据。

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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.example</groupId>
    <artifactId>demo</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>

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

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.0.6.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <java.version>1.8</java.version>
        <spring-cloud.version>Finchley.SR1</spring-cloud.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-turbine</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                <version>$spring-cloud.version</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>


</project>

application.properties

server.port=5000
spring.application.name=turbine-aggregator
eureka.client.service-url.defaultZone=http://localhost:8761/eureka
turbine.app-config=weather-app
turbine.cluster-name-expression='default'

DemoApplication.java

package com.example.demo;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.turbine.EnableTurbine;

@SpringBootApplication
@EnableTurbine

public class DemoApplication 

    public static void main(String[] args) 
        SpringApplication.run(DemoApplication.class, args);
    

我可以在输出中看到它识别出我的 Hystrix 使用的应用程序: click here for snapshot

但在涡轮流中它看起来是空的: click here for snapshot

如果有人知道我做错了什么,请告诉我。谢谢。

【问题讨论】:

【参考方案1】:

最后 - 这是我的错。 由于 Hystrix 客户端有一个旧版本的 spring boot/cloud,它在 ../hystrix.stream 上“广播”了 hystrix 流,但在我用于涡轮机的版本中,它聚合了来自 ../actuator 的流强>/hystrix.stream. 所以我刚刚更新了我的 Hystrix 客户端中的版本。

【讨论】:

以上是关于涡轮机不适用于 spring boot 2.0.6 和 spring cloud Finchley.SR1的主要内容,如果未能解决你的问题,请参考以下文章

Spring Cloud Turbine AMQP 不适用于 Hystrix 仪表板

定制的 ObjectMapper 不适用于 spring boot hatoas

跨域不适用于 Spring Boot

Spring-Boot 不适用于 Flyway

JSF 注释不适用于 Spring-boot

Lombok 不适用于 spring-boot-maven