我有一个基本的hello world Webflux应用程序,我希望将其包含在Spring云堆栈中。每当我将spring-cloud-starter-eureka添加到项目中时,它会使用一堆额外的东西启动Tomcat并破坏我的Webflux端点。
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.0.M3</version>
</parent>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Finchley.M2</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webflux</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.18</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
</dependency>
<!--<dependency>-->
<!--<groupId>org.springframework.cloud</groupId>-->
<!--<artifactId>spring-cloud-starter-eureka</artifactId>-->
<!--</dependency>-->
</dependencies>
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/libs-milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
输出显示端点已映射,但它们总是给出404。
如果我取出Eureka初学者,一切正常。
答案 0 :(得分:0)
这个问题提出了同样的问题,并且回复说Webflux端点还不支持。
Spring 5 Functional Web Framework is not working with Eureka Client
答案 1 :(得分:0)
我使用org.springframework.cloud:spring-cloud-starter-netflix-eureka-client:2.0.0.RELEASE代替spring-cloud-starter-eureka。这与webflux完美结合。