码迷,mamicode.com
首页 > 编程语言 > 详细

springboot集成activiti工作流时容易出现的问题

时间:2018-12-15 10:27:42      阅读:482      评论:0      收藏:0      [点我收藏+]

标签:验证   bean   dep   update   end   time   .class   strong   reflect   

No.1

启动报错

org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘org.activiti.spring.boot.SecurityAutoConfiguration‘: Initialization of bean failed; nested exception is java.lang.ArrayStoreException: sun.reflect.annotation.TypeNotPresentExceptionProxy;

解决办法:启动类上加上 @SpringBootApplication(exclude = SecurityAutoConfiguration.class)即可;因为activiti-spring-boot-starter-basic中引用了spring-boot-starter-security(具体没研究)

 

No.2

启动报错

 

org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘springProcessEngineConfiguration‘ defined in class path resource [xxxxx/xxxx/xxx.java]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.activiti.spring.SpringProcessEngineConfiguration]: Factory method ‘springProcessEngineConfiguration‘ threw exception; nested exception is java.io.FileNotFoundException: class path resource [processes/] cannot be resolved to URL because it does not exist;

意思是在resource下没有找到processes文件夹;

解决办法:在resource目录下添加processes文件夹,并且文件夹不能为空 或是在application.yml文件中加上如下配置(注意是spring节点下)

activiti:
database-schema-update: true
# 自动部署验证设置:true-开启(默认)、false-关闭
check-process-definitions: false

 

No.3

启动报错

 

org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name ‘runtimeServiceBean‘ defined in class path resource [com/example/config/ActivitiConfig.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 java.lang.IllegalArgumentException: jdbcUrl is required with driverClassName.

解决办法:配置数据源时url前加上jdbc-;如:jdbc-url: jdbc:mysql://localhost:3306/activity?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8

 

springboot集成activiti工作流时容易出现的问题

标签:验证   bean   dep   update   end   time   .class   strong   reflect   

原文地址:https://www.cnblogs.com/lfyu/p/10122381.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!