Error creating bean with name 'rabbitMqConsumer': Unsatisfied dependency expressed through field 'accidentReportService'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'accidentReportServiceImpl': Unsatisfied dependency expressed through field 'runtimeService'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'runtimeServiceBean' defined in class path resource [org/flowable/spring/boot/ProcessEngineServicesAutoConfiguration.class]: Unsatisfied dependency expressed through method 'runtimeServiceBean' parameter 0; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'processEngine': FactoryBean threw exception on object creation; nested exception is org.flowable.common.engine.api.FlowableException: Error initialising form data model
时间: 2024-02-10 13:32:52 浏览: 209
根据错误信息,可以看出是依赖注入的问题,具体来说是 `rabbitMqConsumer` 类中注入的 `accidentReportService` 对象没有成功注入。而 `accidentReportService` 对象又依赖于 `runtimeService`,所以这个错误可能会有多个层级的依赖关系。最终的错误信息是 `Error initialising form data model`,这似乎是关于表单数据模型初始化的问题。
为了解决这个问题,可以尝试以下几步:
1. 检查 `rabbitMqConsumer` 和 `accidentReportService` 类的注入是否正确。可以检查它们的注解和相关的配置文件。
2. 确保 `runtimeService` 被正确注入。应该检查 `runtimeService` 类的注入是否正确,并检查它的依赖是否被正确注入。
3. 检查表单数据模型的初始化是否正确。可以查看相关的代码并检查是否有任何错误。
4. 如果以上步骤都没有解决问题,可以考虑使用调试工具来进一步分析错误。可以在代码中添加日志或使用断点调试器来了解程序的执行流程和变量状态。
阅读全文