文章源碼託管:https://github.com/OUYANGSIHAI/Activiti-learninig 歡迎 star !!!java
在上一節中咱們對activiti進行了基本的介紹activiti進行了基本的介紹,同時介紹了基本的概念。mysql
這一節,我將用一個入門程序,介紹如何使用activiti。git
這裏咱們使用Idea
進行工做流開發,雖然Idea對於工做流的友好度不是很好,由於會有一些小的bug,可是,Idea對於Java的開發仍是很是的好的。github
在用Idea開發以前,咱們須要在idea中安裝bpmn開發的插件。方法以下sql
打開設置數據庫
選擇plugins apache
搜索actiBPM api
重啓idea,新建文件微信
若是可以找到下面的建立方法,就表明成功了。 app
新建後出現下面的編輯頁面
到如今,bpmn編輯插件就準備好了。
新建的maven項目目錄以下
這裏須要的pom依賴有如下幾個:junit、druid、mysql、lombok(日誌)、activiti
<?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"> <modelVersion>4.0.0</modelVersion> <groupId>com.sihai</groupId> <artifactId>acitvitiDemo</artifactId> <version>1.0-SNAPSHOT</version> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <!-- druid --> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>1.1.12</version> </dependency> <!-- mysql --> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.30</version> </dependency> <!-- lombok --> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.16.12</version> </dependency> <!-- logback --> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> <version>1.1.8</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.1.8</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.22</version> </dependency> <dependency> <groupId>org.activiti</groupId> <artifactId>activiti-engine</artifactId> <version>5.22.0</version> </dependency> </dependencies> <build> <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) --> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </pluginManagement> </build> </project>
<?xml version="1.0" encoding="UTF-8"?> <configuration scan="true" scanPeriod="60 seconds"> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger - %msg%n</pattern> </encoder> </appender> <!--<appender name="permission" class="ch.qos.logback.core.rolling.RollingFileAppender">--> <!--<file>${catalina.home}/logs/permission.log</file>--> <!--<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">--> <!--<FileNamePattern>${catalina.home}/logs/permission.%d{yyyy-MM-dd}.log.gz</FileNamePattern>--> <!--</rollingPolicy>--> <!--<layout class="ch.qos.logback.classic.PatternLayout">--> <!--<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger - %msg%n</pattern>--> <!--</layout>--> <!--</appender>--> <!----> <!--<logger name="xxx" level="INFO">--> <!--<appender-ref ref="permission"/>--> <!--</logger>--> <!-- TRACE < DEBUG < INFO < WARN < ERROR --> <root level="INFO"> <appender-ref ref="STDOUT"/> </root> </configuration>
下面是添加一個junit測試實例,經過測試生成activiti底層須要的數據庫表,總共有25張,若是數據庫生成了25張表結構,則說明成功!
/** * @Author ouyangsihai * @Description 生成activiti底層數據庫表結構 * @Date 16:24 2019/1/26 * @Param * @return **/ public class Activiti_01 { /** * @return void * @Author ouyangsihai * @Description //生成數據庫表結構 * @Date 20:57 2018/12/5 * @Param [] **/ @Test public void test_createDatabase() { // 建立流程引擎配置信息對象 ProcessEngineConfiguration pec = ProcessEngineConfiguration .createStandaloneProcessEngineConfiguration(); // 設置數據庫的類型 pec.setDatabaseType("mysql"); // 設置建立數據庫的方式 // ProcessEngineConfiguration.DB_SCHEMA_UPDATE_TRUE(true);//若是沒有數據庫表就會建立數據庫表,有的話就修改表結構. // ProcessEngineConfiguration.DB_SCHEMA_UPDATE_FALSE(false): 不會建立數據庫表 // ProcessEngineConfiguration.DB_SCHEMA_UPDATE_CREATE_DROP(create-drop): 先建立、再刪除. pec.setDatabaseSchemaUpdate("true"); // 設置數據庫驅動 pec.setJdbcDriver("com.mysql.jdbc.Driver"); // 設置jdbcURL pec.setJdbcUrl("jdbc:mysql://localhost:3306/activitiTest?useUnicode=true&characterEncoding=UTF-8"); // 設置用戶名 pec.setJdbcUsername("root"); // 設置密碼 pec.setJdbcPassword("root"); pec.setJdbcPassword("XXXX"); // 構建流程引擎對象 ProcessEngine pe = pec.buildProcessEngine(); // 調用訪方法纔會建立數據表 // 調用close方法時,纔會刪除 pe.close(); } }
運行上面的測試實例後,將會生成下面的25張表結構。
日誌信息
表結構
經過上面是入門實例,就將activiti的環境準備好了!
文章有不當之處,歡迎指正,若是喜歡微信閱讀,你也能夠關注個人微信公衆號:
好好學java
,獲取優質學習資源。