其他分享
首页 > 其他分享> > WebFlux使用ServerHttpRequest出现找不到构造

WebFlux使用ServerHttpRequest出现找不到构造

作者:互联网

使用ServerHttpRequest异常
在这里插入图片描述
异常:
java.lang.IllegalStateException: No primary or single public constructor found for interface org.springframework.http.server.reactive.ServerHttpRequest - and no default constructor found either

报错找不到构造方法

其实是
你问题中的 stacktrace 显示你实际上运行的是一个 Spring MVC 应用程序,而 Spring MVC 不支持 org.springframework.http.server.reactive。作为处理程序参数。你的构建中一定有什么东西带来了 springmvc。

当 WebFlux 和 MVC 都存在时,Spring Boot 会自动将你的应用配置为 Spring MVC 应用。

解决方案:

1、用WebFlux时,获取请求头的信息时使用:ServerHttpRequest

2、用MVC时(或WebFlux、MVC依赖同时存在时),获取http请求头的信息使用:HttpServletRequest

参考:https://blog.csdn.net/xiemengyang0903/article/details/111178907

标签:http,Spring,WebFlux,ServerHttpRequest,构造,reactive,MVC
来源: https://blog.csdn.net/weixin_46633487/article/details/119218528