java/spring错误:“reactor.netty.http.server.httpserver”中的“create()”不能应用于“(java.lang.string,int)”

eanckbw9  于 2021-07-24  发布在  Java
关注(0)|答案(2)|浏览(412)

我正在上java/spring课程。代码如下:

package com.pinodev.helloServer;

import reactor.netty.http.server.HttpServer;

public class HelloServerApplication {

    public static void main(String[] args) {
        HttpServer server = HttpServer.create("localhost",8080);
    }
}

内部版本.gradle:

plugins {
    id 'org.springframework.boot' version '2.4.2'
    id 'io.spring.dependency-management' version '1.0.11.RELEASE'
    id 'java'
}

group = 'com.pinodev'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'

repositories {
    mavenCentral()
}

dependencies {
    implementation 'org.springframework.boot:spring-boot-starter-webflux'
    testImplementation 'org.springframework.boot:spring-boot-starter-test'
    testImplementation 'io.projectreactor:reactor-test'
}

test {
    useJUnitPlatform()
}

这就是错误发生的地方

error: 'create()' in 'reactor.netty.http.server.HttpServer' cannot be applied to '(java.lang.String, int)'

zsbz8rwp

zsbz8rwp1#

您应该按如下方式创建服务器:

HttpServer.create()
           .host("0.0.0.0")
           .port(8080)
           .handle((req, res) -> res.sendString(Flux.just("hello")))
           .bind()
           .block();

方法 create() 是世界上唯一的 HttpServer . 具有两个参数的create必须在以前的版本中存在。

ddrv8njm

ddrv8njm2#

类httpserver中没有参数 create() 方法,设置时应使用生成器方法,例如:

HttpServer.create()
       .host("127.0.0.1")
       .port(8080)
       .handle((req, res) -> res.sendString(Flux.just("hello")))
       .bind()
       .block();

在这里看到更多

相关问题