系统部署架构,使用的模式是 2m-2s-sync broker 机器信息 Master 1:172.18.24.5 Slave 1:172.18.24.6 Master 2:...
第四步的依赖冲突,我发现只要把javax.persistence的依赖移动到spring-boot-starter-data-jpa依赖的下面就好了。像这样:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
<artifactId>persistence-api</artifactId>
<version>1.0</version>
</dependency>
springboot2.x整合工作流activiti6.0问题及解决方案前言 由于项目需求涉及到流程,自然而然就选择activiti作为流程管理。项目环境为springboot2.1.4release版本+JDK1.8.0_201,随后到mave...