actibiti部署流程

@Test
    public void testDeployment(){
//        1、创建ProcessEngine
        ProcessEngine processEngine = ProcessEngines.getDefaultProcessEngine();
//        2、得到RepositoryService实例
        RepositoryService repositoryService = processEngine.getRepositoryService();
//        3、使用RepositoryService进行部署
        Deployment deployment = repositoryService.createDeployment()
                .addClasspathResource("bpmn/Leave.bpmn") // 添加bpmn资源
                //png资源命名是有规范的。Leave.myLeave.png|jpg|gif|svg  或者Leave.png|jpg|gif|svg
                .addClasspathResource("bpmn/Leave.myLeave.png")  // 添加png资源
                .name("请假申请流程")
                .deploy();
//        4、输出部署信息
        System.out.println("流程部署id:" + deployment.getId());
        System.out.println("流程部署名称:" + deployment.getName());
    }

com.intellij.rt.execution.junit.JUnitStarter -ideVersion5 -junit4 com.roy.ActivitiDemo,testDeployment

2023-06-02 21:24:29,669 0     [           main] INFO  activiti.engine.ProcessEngines  – Initializing process engine using configuration 'file:/D:/workspace/20210614/ActivitiDemo/BasicDemo/target/classes/activiti.cfg.xml'

2023-06-02 21:24:29,707 38    [           main] INFO  activiti.engine.ProcessEngines  – initializing process engine for resource file:/D:/workspace/20210614/ActivitiDemo/BasicDemo/target/classes/activiti.cfg.xml

2023-06-02 21:24:30,092 423   [           main] DEBUG ry.xml.XmlBeanDefinitionReader  – Loaded 2 bean definitions from InputStream resource [resource loaded through InputStream]

2023-06-02 21:24:30,094 425   [           main] DEBUG ort.DefaultListableBeanFactory  – Creating shared instance of singleton bean 'processEngineConfiguration'

2023-06-02 21:24:30,504 835   [           main] DEBUG ort.DefaultListableBeanFactory  – Creating shared instance of singleton bean 'dataSource'

2023-06-02 21:24:32,806 3137  [           main] DEBUG ProcessEngineConfigurationImpl  – database product name: 'MySQL'

2023-06-02 21:24:32,807 3138  [           main] DEBUG ProcessEngineConfigurationImpl  – using database type: mysql

2023-06-02 21:24:33,020 3351  [           main] DEBUG ache.ibatis.logging.LogFactory  – Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter.

WARNING: An illegal reflective access operation has occurred

WARNING: Illegal reflective access by org.apache.ibatis.reflection.Reflector (file:/D:/studysoftware/mavenRepository-gpidea/org/mybatis/mybatis/3.4.5/mybatis-3.4.5.jar) to method java.lang.Object.finalize()

WARNING: Please consider reporting this to the maintainers of org.apache.ibatis.reflection.Reflector

WARNING: Use –illegal-access=warn to enable warnings of further illegal reflective access operations

WARNING: All illegal access operations will be denied in a future release

2023-06-02 21:24:34,140 4471  [           main] DEBUG mpl.interceptor.LogInterceptor  –

2023-06-02 21:24:34,140 4471  [           main] DEBUG mpl.interceptor.LogInterceptor  – — starting SchemaOperationsProcessEngineBuild ——————————————————–

2023-06-02 21:24:34,144 4475  [           main] DEBUG da.DefaultActivitiEngineAgenda  – Operation class org.activiti.engine.impl.interceptor.CommandInvoker$1 added to agenda

2023-06-02 21:24:34,150 4481  [           main] DEBUG ti.engine.impl.db.DbSqlSession  – Executing performSchemaOperationsProcessEngineBuild with setting true

2023-06-02 21:24:34,150 4481  [           main] DEBUG ansaction.jdbc.JdbcTransaction  – Opening JDBC Connection

2023-06-02 21:24:34,165 4496  [           main] DEBUG ansaction.jdbc.JdbcTransaction  – Setting autocommit to false on JDBC Connection [jdbc:mysql://localhost:3306/activiti?serverTimezone=GMT%2B8, UserName=root@localhost, MySQL Connector/J]

2023-06-02 21:24:34,308 4639  [           main] DEBUG pertyEntityImpl.selectProperty  – ==>  Preparing: select * from ACT_GE_PROPERTY where NAME_ = ?

2023-06-02 21:24:34,328 4659  [           main] DEBUG pertyEntityImpl.selectProperty  – ==> Parameters: schema.version(String)

2023-06-02 21:24:34,349 4680  [           main] DEBUG pertyEntityImpl.selectProperty  – <==      Total: 1

2023-06-02 21:24:34,404 4735  [           main] DEBUG ti.engine.impl.db.DbSqlSession  – Flushing dbSqlSession

2023-06-02 21:24:34,404 4735  [           main] DEBUG ti.engine.impl.db.DbSqlSession  – flush summary: 0 insert, 0 update, 0 delete.

2023-06-02 21:24:34,404 4735  [           main] DEBUG ti.engine.impl.db.DbSqlSession  – now executing flush…

2023-06-02 21:24:34,404 4735  [           main] DEBUG aloneMybatisTransactionContext  – firing event committing…

2023-06-02 21:24:34,405 4736  [           main] DEBUG aloneMybatisTransactionContext  – committing the ibatis sql session…

2023-06-02 21:24:34,405 4736  [           main] DEBUG aloneMybatisTransactionContext  – firing event committed…

2023-06-02 21:24:34,406 4737  [           main] DEBUG ansaction.jdbc.JdbcTransaction  – Resetting autocommit to true on JDBC Connection [jdbc:mysql://localhost:3306/activiti?serverTimezone=GMT%2B8, UserName=root@localhost, MySQL Connector/J]

2023-06-02 21:24:34,407 4738  [           main] DEBUG ansaction.jdbc.JdbcTransaction  – Closing JDBC Connection [jdbc:mysql://localhost:3306/activiti?serverTimezone=GMT%2B8, UserName=root@localhost, MySQL Connector/J]

2023-06-02 21:24:34,407 4738  [           main] DEBUG mpl.interceptor.LogInterceptor  – — SchemaOperationsProcessEngineBuild finished ——————————————————–

2023-06-02 21:24:34,407 4738  [           main] DEBUG mpl.interceptor.LogInterceptor  –

2023-06-02 21:24:34,407 4738  [           main] INFO  .engine.impl.ProcessEngineImpl  – ProcessEngine default created

2023-06-02 21:24:34,416 4747  [           main] DEBUG mpl.interceptor.LogInterceptor  –

2023-06-02 21:24:34,416 4747  [           main] DEBUG mpl.interceptor.LogInterceptor  – — starting ValidateExecutionRelatedEntityCountCfgCmd ——————————————————–

2023-06-02 21:24:34,416 4747  [           main] DEBUG da.DefaultActivitiEngineAgenda  – Operation class org.activiti.engine.impl.interceptor.CommandInvoker$1 added to agenda

2023-06-02 21:24:34,416 4747  [           main] DEBUG ansaction.jdbc.JdbcTransaction  – Opening JDBC Connection

2023-06-02 21:24:34,417 4748  [           main] DEBUG ansaction.jdbc.JdbcTransaction  – Setting autocommit to false on JDBC Connection [jdbc:mysql://localhost:3306/activiti?serverTimezone=GMT%2B8, UserName=root@localhost, MySQL Connector/J]

2023-06-02 21:24:34,418 4749  [           main] DEBUG pertyEntityImpl.selectProperty  – ==>  Preparing: select * from ACT_GE_PROPERTY where NAME_ = ?

2023-06-02 21:24:34,418 4749  [           main] DEBUG pertyEntityImpl.selectProperty  – ==> Parameters: cfg.execution-related-entities-count(String)

2023-06-02 21:24:34,419 4750  [           main] DEBUG pertyEntityImpl.selectProperty  – <==      Total: 1

2023-06-02 21:24:34,419 4750  [           main] DEBUG ti.engine.impl.db.DbSqlSession  – Flushing dbSqlSession

2023-06-02 21:24:34,419 4750  [           main] DEBUG ti.engine.impl.db.DbSqlSession  – flush summary: 0 insert, 0 update, 0 delete.

2023-06-02 21:24:34,419 4750  [           main] DEBUG ti.engine.impl.db.DbSqlSession  – now executing flush…

2023-06-02 21:24:34,419 4750  [           main] DEBUG aloneMybatisTransactionContext  – firing event committing…

2023-06-02 21:24:34,419 4750  [           main] DEBUG aloneMybatisTransactionContext  – committing the ibatis sql session…

2023-06-02 21:24:34,419 4750  [           main] DEBUG aloneMybatisTransactionContext  – firing event committed…

2023-06-02 21:24:34,420 4751  [           main] DEBUG ansaction.jdbc.JdbcTransaction  – Resetting autocommit to true on JDBC Connection [jdbc:mysql://localhost:3306/activiti?serverTimezone=GMT%2B8, UserName=root@localhost, MySQL Connector/J]

2023-06-02 21:24:34,421 4752  [           main] DEBUG ansaction.jdbc.JdbcTransaction  – Closing JDBC Connection [jdbc:mysql://localhost:3306/activiti?serverTimezone=GMT%2B8, UserName=root@localhost, MySQL Connector/J]

2023-06-02 21:24:34,421 4752  [           main] DEBUG mpl.interceptor.LogInterceptor  – — ValidateExecutionRelatedEntityCountCfgCmd finished ——————————————————–

2023-06-02 21:24:34,421 4752  [           main] DEBUG mpl.interceptor.LogInterceptor  –

2023-06-02 21:24:34,421 4752  [           main] INFO  activiti.engine.ProcessEngines  – initialised process engine default

2023-06-02 21:24:34,422 4753  [           main] DEBUG mpl.interceptor.LogInterceptor  –

2023-06-02 21:24:34,423 4754  [           main] DEBUG mpl.interceptor.LogInterceptor  – — starting  ——————————————————–

2023-06-02 21:24:34,423 4754  [           main] DEBUG da.DefaultActivitiEngineAgenda  – Operation class org.activiti.engine.impl.interceptor.CommandInvoker$1 added to agenda

2023-06-02 21:24:34,425 4756  [           main] DEBUG aloneMybatisTransactionContext  – firing event committing…

2023-06-02 21:24:34,425 4756  [           main] DEBUG aloneMybatisTransactionContext  – committing the ibatis sql session…

2023-06-02 21:24:34,425 4756  [           main] DEBUG aloneMybatisTransactionContext  – firing event committed…

2023-06-02 21:24:34,425 4756  [           main] DEBUG mpl.interceptor.LogInterceptor  – —  finished ——————————————————–

2023-06-02 21:24:34,425 4756  [           main] DEBUG mpl.interceptor.LogInterceptor  –

2023-06-02 21:24:34,428 4759  [           main] DEBUG mpl.interceptor.LogInterceptor  –

2023-06-02 21:24:34,428 4759  [           main] DEBUG mpl.interceptor.LogInterceptor  – — starting DeployCmd ——————————————————–

2023-06-02 21:24:34,428 4759  [           main] DEBUG da.DefaultActivitiEngineAgenda  – Operation class org.activiti.engine.impl.interceptor.CommandInvoker$1 added to agenda

2023-06-02 21:24:34,428 4759  [           main] DEBUG mpl.interceptor.LogInterceptor  –

2023-06-02 21:24:34,428 4759  [           main] DEBUG mpl.interceptor.LogInterceptor  – — starting GetNextIdBlockCmd ——————————————————–

2023-06-02 21:24:34,428 4759  [           main] DEBUG da.DefaultActivitiEngineAgenda  – Operation class org.activiti.engine.impl.interceptor.CommandInvoker$1 added to agenda

2023-06-02 21:24:34,429 4760  [           main] DEBUG ansaction.jdbc.JdbcTransaction  – Opening JDBC Connection

2023-06-02 21:24:34,430 4761  [           main] DEBUG ansaction.jdbc.JdbcTransaction  – Setting autocommit to false on JDBC Connection [jdbc:mysql://localhost:3306/activiti?serverTimezone=GMT%2B8, UserName=root@localhost, MySQL Connector/J]

2023-06-02 21:24:34,430 4761  [           main] DEBUG pertyEntityImpl.selectProperty  – ==>  Preparing: select * from ACT_GE_PROPERTY where NAME_ = ? 

2023-06-02 21:24:34,430 4761  [           main] DEBUG pertyEntityImpl.selectProperty  – ==> Parameters: next.dbid(String)

2023-06-02 21:24:34,431 4762  [           main] DEBUG pertyEntityImpl.selectProperty  – <==      Total: 1

2023-06-02 21:24:34,432 4763  [           main] DEBUG ti.engine.impl.db.DbSqlSession  – Flushing dbSqlSession

2023-06-02 21:24:34,432 4763  [           main] DEBUG ti.engine.impl.db.DbSqlSession  –   update PropertyEntity[name=next.dbid, value=75001]

2023-06-02 21:24:34,432 4763  [           main] DEBUG ti.engine.impl.db.DbSqlSession  – flush summary: 0 insert, 1 update, 0 delete.

2023-06-02 21:24:34,432 4763  [           main] DEBUG ti.engine.impl.db.DbSqlSession  – now executing flush…

2023-06-02 21:24:34,432 4763  [           main] DEBUG ti.engine.impl.db.DbSqlSession  – updating: PropertyEntity[name=next.dbid, value=75001]

2023-06-02 21:24:34,432 4763  [           main] DEBUG pertyEntityImpl.updateProperty  – ==>  Preparing: update ACT_GE_PROPERTY SET REV_ = ?, VALUE_ = ? where NAME_ = ? and REV_ = ?

2023-06-02 21:24:34,433 4764  [           main] DEBUG pertyEntityImpl.updateProperty  – ==> Parameters: 31(Integer), 75001(String), next.dbid(String), 30(Integer)

2023-06-02 21:24:34,555 4886  [           main] DEBUG pertyEntityImpl.updateProperty  – <==    Updates: 1

2023-06-02 21:24:34,555 4886  [           main] DEBUG aloneMybatisTransactionContext  – firing event committing…

2023-06-02 21:24:34,555 4886  [           main] DEBUG aloneMybatisTransactionContext  – committing the ibatis sql session…

2023-06-02 21:24:34,556 4887  [           main] DEBUG ansaction.jdbc.JdbcTransaction  – Committing JDBC Connection [jdbc:mysql://localhost:3306/activiti?serverTimezone=GMT%2B8, UserName=root@localhost, MySQL Connector/J]

2023-06-02 21:24:34,684 5015  [           main] DEBUG aloneMybatisTransactionContext  – firing event committed…

2023-06-02 21:24:34,686 5017  [           main] DEBUG ansaction.jdbc.JdbcTransaction  – Resetting autocommit to true on JDBC Connection [jdbc:mysql://localhost:3306/activiti?serverTimezone=GMT%2B8, UserName=root@localhost, MySQL Connector/J]

2023-06-02 21:24:34,687 5018  [           main] DEBUG ansaction.jdbc.JdbcTransaction  – Closing JDBC Connection [jdbc:mysql://localhost:3306/activiti?serverTimezone=GMT%2B8, UserName=root@localhost, MySQL Connector/J]

2023-06-02 21:24:34,687 5018  [           main] DEBUG mpl.interceptor.LogInterceptor  – — GetNextIdBlockCmd finished ——————————————————–

2023-06-02 21:24:34,687 5018  [           main] DEBUG mpl.interceptor.LogInterceptor  –

2023-06-02 21:24:34,687 5018  [           main] DEBUG mpl.bpmn.deployer.BpmnDeployer  – Processing deployment 请假申请流程

2023-06-02 21:24:34,689 5020  [           main] DEBUG ployer.ParsedDeploymentBuilder  – Processing BPMN resource bpmn/Leave.bpmn

2023-06-02 21:24:34,853 5184  [           main] DEBUG er.handler.ProcessParseHandler  – Parsing process myLeave

2023-06-02 21:24:34,858 5189  [           main] DEBUG ansaction.jdbc.JdbcTransaction  – Opening JDBC Connection

2023-06-02 21:24:34,859 5190  [           main] DEBUG ansaction.jdbc.JdbcTransaction  – Setting autocommit to false on JDBC Connection [jdbc:mysql://localhost:3306/activiti?serverTimezone=GMT%2B8, UserName=root@localhost, MySQL Connector/J]

2023-06-02 21:24:34,860 5191  [           main] DEBUG ctLatestProcessDefinitionByKey  – ==>  Preparing: select * from ACT_RE_PROCDEF where KEY_ = ? and (TENANT_ID_ = '' or TENANT_ID_ is null) and VERSION_ = (select max(VERSION_) from ACT_RE_PROCDEF where KEY_ = ? and (TENANT_ID_ = '' or TENANT_ID_ is null)) 

2023-06-02 21:24:34,860 5191  [           main] DEBUG ctLatestProcessDefinitionByKey  – ==> Parameters: myLeave(String), myLeave(String)

2023-06-02 21:24:34,914 5245  [           main] DEBUG ctLatestProcessDefinitionByKey  – <==      Total: 1

2023-06-02 21:24:34,946 5277  [           main] DEBUG nsByTypeAndProcessDefinitionId  – ==>  Preparing: select * from ACT_RU_EVENT_SUBSCR WHERE (EVENT_TYPE_ = ?) and PROC_DEF_ID_ = ? and EXECUTION_ID_ is null and PROC_INST_ID_ is null and (TENANT_ID_ = '' or TENANT_ID_ is null) 

2023-06-02 21:24:34,947 5278  [           main] DEBUG nsByTypeAndProcessDefinitionId  – ==> Parameters: message(String), myLeave:2:d14835d8-aea5-11ec-a196-1062e56c337d(String)

2023-06-02 21:24:34,970 5301  [           main] DEBUG nsByTypeAndProcessDefinitionId  – <==      Total: 0

2023-06-02 21:24:34,970 5301  [           main] DEBUG nsByTypeAndProcessDefinitionId  – ==>  Preparing: select * from ACT_RU_EVENT_SUBSCR WHERE (EVENT_TYPE_ = ?) and PROC_DEF_ID_ = ? and EXECUTION_ID_ is null and PROC_INST_ID_ is null and (TENANT_ID_ = '' or TENANT_ID_ is null) 

2023-06-02 21:24:34,970 5301  [           main] DEBUG nsByTypeAndProcessDefinitionId  – ==> Parameters: signal(String), myLeave:2:d14835d8-aea5-11ec-a196-1062e56c337d(String)

2023-06-02 21:24:34,971 5302  [           main] DEBUG nsByTypeAndProcessDefinitionId  – <==      Total: 0

2023-06-02 21:24:34,972 5303  [           main] DEBUG ProcessDefinitionKeyNoTenantId  – ==>  Preparing: select J.* from ACT_RU_TIMER_JOB J inner join ACT_RE_PROCDEF P on J.PROC_DEF_ID_ = P.ID_ where J.HANDLER_TYPE_ = ? and P.KEY_ = ? and (P.TENANT_ID_ = '' or P.TENANT_ID_ is null) 

2023-06-02 21:24:34,972 5303  [           main] DEBUG ProcessDefinitionKeyNoTenantId  – ==> Parameters: timer-start-event(String), myLeave(String)

2023-06-02 21:24:34,986 5317  [           main] DEBUG ProcessDefinitionKeyNoTenantId  – <==      Total: 0

2023-06-02 21:24:34,987 5318  [           main] INFO  mpl.bpmn.deployer.BpmnDeployer  – Process deployed: {id: myLeave:3:72504, key: myLeave, name: 员工请假审批流程 }

2023-06-02 21:24:34,987 5318  [           main] DEBUG mpl.interceptor.LogInterceptor  –

2023-06-02 21:24:34,987 5318  [           main] DEBUG mpl.interceptor.LogInterceptor  – — starting GetProcessDefinitionInfoCmd ——————————————————–

2023-06-02 21:24:34,988 5319  [           main] DEBUG ptor.CommandContextInterceptor  – Valid context found. Reusing it for the current command 'org.activiti.engine.impl.cmd.GetProcessDefinitionInfoCmd'

2023-06-02 21:24:34,988 5319  [           main] DEBUG da.DefaultActivitiEngineAgenda  – Operation class org.activiti.engine.impl.interceptor.CommandInvoker$1 added to agenda

2023-06-02 21:24:34,989 5320  [           main] DEBUG itionInfoByProcessDefinitionId  – ==>  Preparing: select * from ACT_PROCDEF_INFO where PROC_DEF_ID_ = ? 

2023-06-02 21:24:34,990 5321  [           main] DEBUG itionInfoByProcessDefinitionId  – ==> Parameters: myLeave:3:72504(String)

2023-06-02 21:24:35,012 5343  [           main] DEBUG itionInfoByProcessDefinitionId  – <==      Total: 0

2023-06-02 21:24:35,012 5343  [           main] DEBUG mpl.interceptor.LogInterceptor  – — GetProcessDefinitionInfoCmd finished ——————————————————–

2023-06-02 21:24:35,012 5343  [           main] DEBUG mpl.interceptor.LogInterceptor  –

2023-06-02 21:24:35,012 5343  [           main] DEBUG ti.engine.impl.db.DbSqlSession  – Flushing dbSqlSession

2023-06-02 21:24:35,012 5343  [           main] DEBUG ti.engine.impl.db.DbSqlSession  –   insert DeploymentEntity[id=72501, name=请假申请流程]

2023-06-02 21:24:35,012 5343  [           main] DEBUG ti.engine.impl.db.DbSqlSession  –   insert ResourceEntity[id=72502, name=bpmn/Leave.bpmn]

2023-06-02 21:24:35,012 5343  [           main] DEBUG ti.engine.impl.db.DbSqlSession  –   insert ResourceEntity[id=72503, name=bpmn/Leave.myLeave.png]

2023-06-02 21:24:35,012 5343  [           main] DEBUG ti.engine.impl.db.DbSqlSession  –   insert ProcessDefinitionEntity[myLeave:3:72504]

2023-06-02 21:24:35,013 5344  [           main] DEBUG ti.engine.impl.db.DbSqlSession  – flush summary: 4 insert, 0 update, 0 delete.

2023-06-02 21:24:35,013 5344  [           main] DEBUG ti.engine.impl.db.DbSqlSession  – now executing flush…

2023-06-02 21:24:35,013 5344  [           main] DEBUG ti.engine.impl.db.DbSqlSession  – inserting: ProcessDefinitionEntity[myLeave:3:72504]

2023-06-02 21:24:35,013 5344  [           main] DEBUG tyImpl.insertProcessDefinition  – ==>  Preparing: insert into ACT_RE_PROCDEF(ID_, REV_, CATEGORY_, NAME_, KEY_, VERSION_, DEPLOYMENT_ID_, RESOURCE_NAME_, DGRM_RESOURCE_NAME_, DESCRIPTION_, HAS_START_FORM_KEY_, HAS_GRAPHICAL_NOTATION_ , SUSPENSION_STATE_, TENANT_ID_, ENGINE_VERSION_, APP_VERSION_) values (?, 1, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) 

2023-06-02 21:24:35,015 5346  [           main] DEBUG tyImpl.insertProcessDefinition  – ==> Parameters: myLeave:3:72504(String), http://www.activiti.org/test(String), 员工请假审批流程(String), myLeave(String), 3(Integer), 72501(String), bpmn/Leave.bpmn(String), bpmn/Leave.myLeave.png(String), null, false(Boolean), true(Boolean), 1(Integer), (String), null, null

2023-06-02 21:24:35,035 5366  [           main] DEBUG tyImpl.insertProcessDefinition  – <==    Updates: 1

2023-06-02 21:24:35,035 5366  [           main] DEBUG ti.engine.impl.db.DbSqlSession  – inserting: DeploymentEntity[id=72501, name=请假申请流程]

2023-06-02 21:24:35,035 5366  [           main] DEBUG entEntityImpl.insertDeployment  – ==>  Preparing: insert into ACT_RE_DEPLOYMENT(ID_, NAME_, CATEGORY_, KEY_, TENANT_ID_, DEPLOY_TIME_, ENGINE_VERSION_, VERSION_, PROJECT_RELEASE_VERSION_) values(?, ?, ?, ?, ?, ?, ?, ?, ?) 

2023-06-02 21:24:35,037 5368  [           main] DEBUG entEntityImpl.insertDeployment  – ==> Parameters: 72501(String), 请假申请流程(String), null, null, (String), 2023-06-02 21:24:34.428(Timestamp), null, 1(Integer), null

2023-06-02 21:24:35,080 5411  [           main] DEBUG entEntityImpl.insertDeployment  – <==    Updates: 1

2023-06-02 21:24:35,082 5413  [           main] DEBUG eEntityImpl.bulkInsertResource  – ==>  Preparing: INSERT INTO ACT_GE_BYTEARRAY(ID_, REV_, NAME_, BYTES_, DEPLOYMENT_ID_, GENERATED_) VALUES (?, 1, ?, ?, ?, ?) , (?, 1, ?, ?, ?, ?) 

2023-06-02 21:24:35,083 5414  [           main] DEBUG eEntityImpl.bulkInsertResource  – ==> Parameters: 72502(String), bpmn/Leave.bpmn(String), java.io.ByteArrayInputStream@78b612c6(ByteArrayInputStream), 72501(String), false(Boolean), 72503(String), bpmn/Leave.myLeave.png(String), java.io.ByteArrayInputStream@257e0827(ByteArrayInputStream), 72501(String), false(Boolean)

2023-06-02 21:24:35,202 5533  [           main] DEBUG eEntityImpl.bulkInsertResource  – <==    Updates: 2

2023-06-02 21:24:35,202 5533  [           main] DEBUG aloneMybatisTransactionContext  – firing event committing…

2023-06-02 21:24:35,203 5534  [           main] DEBUG aloneMybatisTransactionContext  – committing the ibatis sql session…

2023-06-02 21:24:35,203 5534  [           main] DEBUG ansaction.jdbc.JdbcTransaction  – Committing JDBC Connection [jdbc:mysql://localhost:3306/activiti?serverTimezone=GMT%2B8, UserName=root@localhost, MySQL Connector/J]

2023-06-02 21:24:35,256 5587  [           main] DEBUG aloneMybatisTransactionContext  – firing event committed…

2023-06-02 21:24:35,257 5588  [           main] DEBUG ansaction.jdbc.JdbcTransaction  – Resetting autocommit to true on JDBC Connection [jdbc:mysql://localhost:3306/activiti?serverTimezone=GMT%2B8, UserName=root@localhost, MySQL Connector/J]

2023-06-02 21:24:35,258 5589  [           main] DEBUG ansaction.jdbc.JdbcTransaction  – Closing JDBC Connection [jdbc:mysql://localhost:3306/activiti?serverTimezone=GMT%2B8, UserName=root@localhost, MySQL Connector/J]

2023-06-02 21:24:35,258 5589  [           main] DEBUG mpl.interceptor.LogInterceptor  – — DeployCmd finished ——————————————————–

2023-06-02 21:24:35,258 5589  [           main] DEBUG mpl.interceptor.LogInterceptor  –

流程部署id:72501

流程部署名称:请假申请流程

Process finished with exit code 0

© 版权声明
THE END
喜欢就支持一下吧
点赞8 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容