我有一个大问题,请你帮我
我用Spring Data R2DBC(Postgresql)创建了Spring Boot(2.2)Webflux项目。一切正常,但是当我添加Reactive Redis依赖项时,启动Jetty容器,它会抛出这样的异常
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2019-04-03 19:52:55.444 ERROR 2332 --- [ restartedMain] o.s.b.d.LoggingFailureAnalysisReporter :
***************************
APPLICATION FAILED TO START
***************************
Description:
Parameter 0 of constructor in vn.com.sky.DataLoader required a bean of type 'vn.com.sky.RoleRepo' that could not be found.
Action:
Consider defining a bean of type 'vn.com.sky.RoleRepo' in your configuration.
当我删除响应式Redis依赖项时,一切又恢复正常
或者当我将Spring Data R2DBC更改为Reacitve Mongo时,它仍然可以正常工作。
Spring数据R2DBC是否与Reactive Redis冲突?
这是源代码演示