我正在尝试使用subString
在target
中运行一个非常简单的流应用程序,但出现以下异常:
org.springframework.core.annotation.AnnotationConfigurationException:注释[org.springframework.boot.SpringBootConfiguration]中的属性'proxyBeanMethods'被声明为@AliasFor注释[org.springframework.context.annotation中不存在的属性'proxyBeanMethods'。配置]。
在搜索了该错误之后,我发现SCDF 2.2.1
是minikube
中的新功能,但是proxyBeanMethods
运行Spring Boot 2.2
。
这是我的处理器代码:
SCDF 2.2.1
似乎存在某种不兼容,但我不知道自己在做什么错。
答案 0 :(得分:0)
如果在SCDF和流/任务应用程序之间混合使用Boot版本,则可能会出现不兼容问题。
您希望将SCDF切换到2.3.0.RC2,因为该版本基于Spring Boot 2.2.x基础。预计2.3.0.GA也将在本周发布。
答案 1 :(得分:0)
我将版本更改为:
Spring Boot 2.1.6
Spring Cloud Greenwich.SR4
使用Spring Cloud Stream 2.1.4
现在我的信息流正在运行