SpringBoot整合activiti5.22.0-项目搭建
spring boot 要引入activiti 5.22.0,使用下面的方法是正确的,其他资料有的是错的
一、新建ruoyi-activiti5模块,pom.xml如下:
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <artifactId>ruoyi</artifactId> <groupId>com.ruoyi</groupId> <version>3.2.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>ruoyi-activiti5</artifactId> <properties> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> <activiti.version>5.22.0</activiti.version> </properties> <dependencies> <dependency> <groupId>org.activiti</groupId> <artifactId>activiti-spring-boot-starter-basic</artifactId> <version>${activiti.version}</version> </dependency> </dependencies> </project>
参考资料:
https://www.iteye.com/blog/allen-shen-2425024
https://blog.csdn.net/m0_37607945/article/details/115227924
https://blog.csdn.net/m0_37607945/article/details/115230724

浙公网安备 33010602011771号