我正在上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)'
2条答案
按热度按时间zsbz8rwp1#
您应该按如下方式创建服务器:
方法
create()
是世界上唯一的HttpServer
. 具有两个参数的create必须在以前的版本中存在。ddrv8njm2#
类httpserver中没有参数
create()
方法,设置时应使用生成器方法,例如:在这里看到更多