我正在使用 Spring Boot 2 和响应式启动器开发一个响应式项目。我的问题是,当我启动应用程序时,它启动的是 Tomcat 服务器而不是 Netty。
这是我在 build.gradle 文件中的依赖项任务:
dependencies {
compile("org.springframework.boot:spring-boot-starter-actuator:${springBootVersion}")
compile("org.springframework.boot:spring-boot-starter-webflux:${springBootVersion}")
compile("org.springframework.boot:spring-boot-starter-hateoas:${springBootVersion}")
compile group: 'com.github.tomakehurst', name: 'wiremock', version: '2.15.0'
compile("ro.orange.omoney:lms-token-client:0.1.0-SNAPSHOT")
testCompile("org.springframework.boot:spring-boot-starter-test:${springBootVersion}")
}
你能告诉我为什么我会遇到这个问题吗?谢谢!