org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'globalEventListenerConfig' defined in file [D:\ideaWorkSpace\java\ehl-core\ehl-flowable\target\classes\com\ruoyi\flowable\config\GlobalEventListenerConfig.class]: Unsatisfied dependency expressed through constructor parameter 0; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.ruoyi.flowable.listener.GlobalEventListener' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {}
时间: 2024-04-28 20:24:40 浏览: 72
这是一个 Spring 框架的异常,它表示在创建名为 'globalEventListenerConfig' 的 Bean 时出现了依赖注入问题。具体来说,构造函数的第一个参数需要一个类型为 'com.ruoyi.flowable.listener.GlobalEventListener' 的 Bean,但是 Spring 容器中没有找到该类型的 Bean。可能原因是没有定义该 Bean,或者定义了但是没有被正确扫描到。您可以检查一下是否正确定义了 'GlobalEventListener' 类,并且在该类上是否添加了合适的注解,以确保它被正确地扫描到并被注入到 'globalEventListenerConfig' 中。
阅读全文