我通过idea2020用git来拉取源码,让他自己下载需要的依赖,所有依赖下载完成后为了消除报错我做了一下几点改动:
1、JDK我选择17
2、project language level选择了SDK default
3、shorten command line 选择了JAR mainfest
经过这三项改动后,没有红线报错了,点击运行后,报错信息如下:
Error starting ApplicationContext. To display the condition evaluation report re-run your application with 'debug' enabled.
2023-05-29T14:09:56.865+08:00 ERROR 1428 --- [ restartedMain] o.s.boot.SpringApplication : Application run failed
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'replyEndpoint' defined in class path resource [run/halo/app/core/extension/endpoint/ReplyEndpoint.class]: Unsatisfied dependency expressed through constructor parameter 0: Error creating bean with name 'replyServiceImpl' defined in class path resource [run/halo/app/content/comment/ReplyServiceImpl.class]: Unsatisfied dependency expressed through constructor parameter 0: Error creating bean with name 'reactiveExtensionClientImpl' defined in class path resource [run/halo/app/extension/ReactiveExtensionClientImpl.class]: Unsatisfied dependency expressed through constructor parameter 0: Error creating bean with name 'reactiveExtensionStoreClientImpl' defined in class path resource [run/halo/app/extension/store/ReactiveExtensionStoreClientImpl.class]: Unsatisfied dependency expressed through constructor parameter 0: Error creating bean with name 'extensionStoreRepository' defined in run.halo.app.extension.store.ExtensionStoreRepository defined in @EnableR2dbcRepositories declared on R2dbcRepositoriesAutoConfigureRegistrar.EnableR2dbcRepositoriesConfiguration: Cannot resolve reference to bean 'r2dbcEntityTemplate' while setting bean property 'entityOperations'
请问该如何解决?