Browse Source

🐛 activiti 建表不自动创建history表的问题

pull/1/head
Yangkai.Shen 6 years ago
parent
commit
76afcf7973
1 changed files with 11 additions and 0 deletions
  1. +11
    -0
      spring-boot-demo-activiti/pom.xml

+ 11
- 0
spring-boot-demo-activiti/pom.xml View File

@@ -28,6 +28,12 @@
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

<!-- activiti 自动建表 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>

<dependency>
<groupId>org.activiti</groupId>
<artifactId>activiti-spring-boot-starter</artifactId>
@@ -39,6 +45,11 @@
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
</dependencies>

<build>


Loading…
Cancel
Save