排他网关-部署流程定义

news2024/11/24 20:56:38

类:com.roy.ActivitiGatewayExclusive
/**
     * 部署流程定义
     */
    @Test
    public void testDeployment(){
//        1、创建ProcessEngine
        ProcessEngine processEngine = ProcessEngines.getDefaultProcessEngine();
//        2、得到RepositoryService实例
        RepositoryService repositoryService = processEngine.getRepositoryService();
//        3、使用RepositoryService进行部署
        Deployment deployment = repositoryService.createDeployment()
                .addClasspathResource("bpmn/evection-exclusive.bpmn") // 添加bpmn资源
//                .addClasspathResource("bpmn/evection.png")  // 添加png资源
                .name("出差申请流程-排他网关")
                .deploy();
//        4、输出部署信息
        System.out.println("流程部署id:" + deployment.getId());
        System.out.println("流程部署名称:" + deployment.getName());
    }

2023-06-05 22:53:49,320 0     [           main] INFO  activiti.engine.ProcessEngines  - Initializing process engine using configuration 'file:/D:/workspace/20210614/ActivitiDemo/BasicDemo/target/classes/activiti.cfg.xml'

2023-06-05 22:53:49,322 2     [           main] INFO  activiti.engine.ProcessEngines  - initializing process engine for resource file:/D:/workspace/20210614/ActivitiDemo/BasicDemo/target/classes/activiti.cfg.xml

2023-06-05 22:53:49,901 581   [           main] DEBUG ry.xml.XmlBeanDefinitionReader  - Loaded 2 bean definitions from InputStream resource [resource loaded through InputStream]

2023-06-05 22:53:49,903 583   [           main] DEBUG ort.DefaultListableBeanFactory  - Creating shared instance of singleton bean 'processEngineConfiguration'

2023-06-05 22:53:50,327 1007  [           main] DEBUG ort.DefaultListableBeanFactory  - Creating shared instance of singleton bean 'dataSource'

2023-06-05 22:53:53,683 4363  [           main] DEBUG ProcessEngineConfigurationImpl  - database product name: 'MySQL'

2023-06-05 22:53:53,684 4364  [           main] DEBUG ProcessEngineConfigurationImpl  - using database type: mysql

2023-06-05 22:53:53,884 4564  [           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-05 22:53:55,350 6030  [           main] DEBUG mpl.interceptor.LogInterceptor  -

2023-06-05 22:53:55,350 6030  [           main] DEBUG mpl.interceptor.LogInterceptor  - --- starting SchemaOperationsProcessEngineBuild --------------------------------------------------------

2023-06-05 22:53:55,357 6037  [           main] DEBUG da.DefaultActivitiEngineAgenda  - Operation class org.activiti.engine.impl.interceptor.CommandInvoker$1 added to agenda

2023-06-05 22:53:55,373 6053  [           main] DEBUG ti.engine.impl.db.DbSqlSession  - Executing performSchemaOperationsProcessEngineBuild with setting true

2023-06-05 22:53:55,373 6053  [           main] DEBUG ansaction.jdbc.JdbcTransaction  - Opening JDBC Connection

2023-06-05 22:53:55,394 6074  [           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-05 22:53:55,457 6137  [           main] DEBUG pertyEntityImpl.selectProperty  - ==>  Preparing: select * from ACT_GE_PROPERTY where NAME_ = ? 

2023-06-05 22:53:55,500 6180  [           main] DEBUG pertyEntityImpl.selectProperty  - ==> Parameters: schema.version(String)

2023-06-05 22:53:55,538 6218  [           main] DEBUG pertyEntityImpl.selectProperty  - <==      Total: 1

2023-06-05 22:53:55,576 6256  [           main] DEBUG ti.engine.impl.db.DbSqlSession  - Flushing dbSqlSession

2023-06-05 22:53:55,576 6256  [           main] DEBUG ti.engine.impl.db.DbSqlSession  - flush summary: 0 insert, 0 update, 0 delete.

2023-06-05 22:53:55,576 6256  [           main] DEBUG ti.engine.impl.db.DbSqlSession  - now executing flush...

2023-06-05 22:53:55,576 6256  [           main] DEBUG aloneMybatisTransactionContext  - firing event committing...

2023-06-05 22:53:55,579 6259  [           main] DEBUG aloneMybatisTransactionContext  - committing the ibatis sql session...

2023-06-05 22:53:55,580 6260  [           main] DEBUG aloneMybatisTransactionContext  - firing event committed...

2023-06-05 22:53:55,581 6261  [           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-05 22:53:55,583 6263  [           main] DEBUG ansaction.jdbc.JdbcTransaction  - Closing JDBC Connection [jdbc:mysql://localhost:3306/activiti?serverTimezone=GMT%2B8, UserName=root@localhost, MySQL Connector/J]

2023-06-05 22:53:55,584 6264  [           main] DEBUG mpl.interceptor.LogInterceptor  - --- SchemaOperationsProcessEngineBuild finished --------------------------------------------------------

2023-06-05 22:53:55,584 6264  [           main] DEBUG mpl.interceptor.LogInterceptor  -

2023-06-05 22:53:55,584 6264  [           main] INFO  .engine.impl.ProcessEngineImpl  - ProcessEngine default created

2023-06-05 22:53:55,597 6277  [           main] DEBUG mpl.interceptor.LogInterceptor  -

2023-06-05 22:53:55,597 6277  [           main] DEBUG mpl.interceptor.LogInterceptor  - --- starting ValidateExecutionRelatedEntityCountCfgCmd --------------------------------------------------------

2023-06-05 22:53:55,597 6277  [           main] DEBUG da.DefaultActivitiEngineAgenda  - Operation class org.activiti.engine.impl.interceptor.CommandInvoker$1 added to agenda

2023-06-05 22:53:55,597 6277  [           main] DEBUG ansaction.jdbc.JdbcTransaction  - Opening JDBC Connection

2023-06-05 22:53:55,598 6278  [           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-05 22:53:55,599 6279  [           main] DEBUG pertyEntityImpl.selectProperty  - ==>  Preparing: select * from ACT_GE_PROPERTY where NAME_ = ? 

2023-06-05 22:53:55,599 6279  [           main] DEBUG pertyEntityImpl.selectProperty  - ==> Parameters: cfg.execution-related-entities-count(String)

2023-06-05 22:53:55,600 6280  [           main] DEBUG pertyEntityImpl.selectProperty  - <==      Total: 1

2023-06-05 22:53:55,600 6280  [           main] DEBUG ti.engine.impl.db.DbSqlSession  - Flushing dbSqlSession

2023-06-05 22:53:55,600 6280  [           main] DEBUG ti.engine.impl.db.DbSqlSession  - flush summary: 0 insert, 0 update, 0 delete.

2023-06-05 22:53:55,600 6280  [           main] DEBUG ti.engine.impl.db.DbSqlSession  - now executing flush...

2023-06-05 22:53:55,600 6280  [           main] DEBUG aloneMybatisTransactionContext  - firing event committing...

2023-06-05 22:53:55,600 6280  [           main] DEBUG aloneMybatisTransactionContext  - committing the ibatis sql session...

2023-06-05 22:53:55,601 6281  [           main] DEBUG aloneMybatisTransactionContext  - firing event committed...

2023-06-05 22:53:55,601 6281  [           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-05 22:53:55,602 6282  [           main] DEBUG ansaction.jdbc.JdbcTransaction  - Closing JDBC Connection [jdbc:mysql://localhost:3306/activiti?serverTimezone=GMT%2B8, UserName=root@localhost, MySQL Connector/J]

2023-06-05 22:53:55,602 6282  [           main] DEBUG mpl.interceptor.LogInterceptor  - --- ValidateExecutionRelatedEntityCountCfgCmd finished --------------------------------------------------------

2023-06-05 22:53:55,602 6282  [           main] DEBUG mpl.interceptor.LogInterceptor  -

2023-06-05 22:53:55,602 6282  [           main] INFO  activiti.engine.ProcessEngines  - initialised process engine default

2023-06-05 22:53:55,605 6285  [           main] DEBUG mpl.interceptor.LogInterceptor  -

2023-06-05 22:53:55,605 6285  [           main] DEBUG mpl.interceptor.LogInterceptor  - --- starting  --------------------------------------------------------

2023-06-05 22:53:55,606 6286  [           main] DEBUG da.DefaultActivitiEngineAgenda  - Operation class org.activiti.engine.impl.interceptor.CommandInvoker$1 added to agenda

2023-06-05 22:53:55,617 6297  [           main] DEBUG aloneMybatisTransactionContext  - firing event committing...

2023-06-05 22:53:55,617 6297  [           main] DEBUG aloneMybatisTransactionContext  - committing the ibatis sql session...

2023-06-05 22:53:55,617 6297  [           main] DEBUG aloneMybatisTransactionContext  - firing event committed...

2023-06-05 22:53:55,617 6297  [           main] DEBUG mpl.interceptor.LogInterceptor  - ---  finished --------------------------------------------------------

2023-06-05 22:53:55,617 6297  [           main] DEBUG mpl.interceptor.LogInterceptor  -

2023-06-05 22:53:55,620 6300  [           main] DEBUG mpl.interceptor.LogInterceptor  -

2023-06-05 22:53:55,620 6300  [           main] DEBUG mpl.interceptor.LogInterceptor  - --- starting DeployCmd --------------------------------------------------------

2023-06-05 22:53:55,620 6300  [           main] DEBUG da.DefaultActivitiEngineAgenda  - Operation class org.activiti.engine.impl.interceptor.CommandInvoker$1 added to agenda

2023-06-05 22:53:55,622 6302  [           main] DEBUG mpl.interceptor.LogInterceptor  -

2023-06-05 22:53:55,622 6302  [           main] DEBUG mpl.interceptor.LogInterceptor  - --- starting GetNextIdBlockCmd --------------------------------------------------------

2023-06-05 22:53:55,623 6303  [           main] DEBUG da.DefaultActivitiEngineAgenda  - Operation class org.activiti.engine.impl.interceptor.CommandInvoker$1 added to agenda

2023-06-05 22:53:55,623 6303  [           main] DEBUG ansaction.jdbc.JdbcTransaction  - Opening JDBC Connection

2023-06-05 22:53:55,626 6306  [           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-05 22:53:55,628 6308  [           main] DEBUG pertyEntityImpl.selectProperty  - ==>  Preparing: select * from ACT_GE_PROPERTY where NAME_ = ? 

2023-06-05 22:53:55,628 6308  [           main] DEBUG pertyEntityImpl.selectProperty  - ==> Parameters: next.dbid(String)

2023-06-05 22:53:55,629 6309  [           main] DEBUG pertyEntityImpl.selectProperty  - <==      Total: 1

2023-06-05 22:53:55,630 6310  [           main] DEBUG ti.engine.impl.db.DbSqlSession  - Flushing dbSqlSession

2023-06-05 22:53:55,631 6311  [           main] DEBUG ti.engine.impl.db.DbSqlSession  -   update PropertyEntity[name=next.dbid, value=90001]

2023-06-05 22:53:55,631 6311  [           main] DEBUG ti.engine.impl.db.DbSqlSession  - flush summary: 0 insert, 1 update, 0 delete.

2023-06-05 22:53:55,631 6311  [           main] DEBUG ti.engine.impl.db.DbSqlSession  - now executing flush...

2023-06-05 22:53:55,631 6311  [           main] DEBUG ti.engine.impl.db.DbSqlSession  - updating: PropertyEntity[name=next.dbid, value=90001]

2023-06-05 22:53:55,631 6311  [           main] DEBUG pertyEntityImpl.updateProperty  - ==>  Preparing: update ACT_GE_PROPERTY SET REV_ = ?, VALUE_ = ? where NAME_ = ? and REV_ = ? 

2023-06-05 22:53:55,632 6312  [           main] DEBUG pertyEntityImpl.updateProperty  - ==> Parameters: 37(Integer), 90001(String), next.dbid(String), 36(Integer)

2023-06-05 22:53:55,633 6313  [           main] DEBUG pertyEntityImpl.updateProperty  - <==    Updates: 1

2023-06-05 22:53:55,633 6313  [           main] DEBUG aloneMybatisTransactionContext  - firing event committing...

2023-06-05 22:53:55,633 6313  [           main] DEBUG aloneMybatisTransactionContext  - committing the ibatis sql session...

2023-06-05 22:53:55,634 6314  [           main] DEBUG ansaction.jdbc.JdbcTransaction  - Committing JDBC Connection [jdbc:mysql://localhost:3306/activiti?serverTimezone=GMT%2B8, UserName=root@localhost, MySQL Connector/J]

2023-06-05 22:53:55,771 6451  [           main] DEBUG aloneMybatisTransactionContext  - firing event committed...

2023-06-05 22:53:55,774 6454  [           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-05 22:53:55,777 6457  [           main] DEBUG ansaction.jdbc.JdbcTransaction  - Closing JDBC Connection [jdbc:mysql://localhost:3306/activiti?serverTimezone=GMT%2B8, UserName=root@localhost, MySQL Connector/J]

2023-06-05 22:53:55,777 6457  [           main] DEBUG mpl.interceptor.LogInterceptor  - --- GetNextIdBlockCmd finished --------------------------------------------------------

2023-06-05 22:53:55,777 6457  [           main] DEBUG mpl.interceptor.LogInterceptor  -

2023-06-05 22:53:55,778 6458  [           main] DEBUG mpl.bpmn.deployer.BpmnDeployer  - Processing deployment 出差申请流程-排他网关

2023-06-05 22:53:55,783 6463  [           main] DEBUG ployer.ParsedDeploymentBuilder  - Processing BPMN resource bpmn/evection-exclusive.bpmn

2023-06-05 22:53:56,026 6706  [           main] DEBUG er.handler.ProcessParseHandler  - Parsing process exclusive

2023-06-05 22:53:56,049 6729  [           main] DEBUG ansaction.jdbc.JdbcTransaction  - Opening JDBC Connection

2023-06-05 22:53:56,050 6730  [           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-05 22:53:56,051 6731  [           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-05 22:53:56,051 6731  [           main] DEBUG ctLatestProcessDefinitionByKey  - ==> Parameters: exclusive(String), exclusive(String)

2023-06-05 22:53:56,061 6741  [           main] DEBUG ctLatestProcessDefinitionByKey  - <==      Total: 0

2023-06-05 22:53:56,073 6753  [           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-05 22:53:56,073 6753  [           main] DEBUG ProcessDefinitionKeyNoTenantId  - ==> Parameters: timer-start-event(String), exclusive(String)

2023-06-05 22:53:56,082 6762  [           main] DEBUG ProcessDefinitionKeyNoTenantId  - <==      Total: 0

2023-06-05 22:53:56,082 6762  [           main] INFO  mpl.bpmn.deployer.BpmnDeployer  - Process deployed: {id: exclusive:1:87503, key: exclusive, name: 出差流程-排他 }

2023-06-05 22:53:56,083 6763  [           main] DEBUG mpl.interceptor.LogInterceptor  -

2023-06-05 22:53:56,083 6763  [           main] DEBUG mpl.interceptor.LogInterceptor  - --- starting GetProcessDefinitionInfoCmd --------------------------------------------------------

2023-06-05 22:53:56,083 6763  [           main] DEBUG ptor.CommandContextInterceptor  - Valid context found. Reusing it for the current command 'org.activiti.engine.impl.cmd.GetProcessDefinitionInfoCmd'

2023-06-05 22:53:56,083 6763  [           main] DEBUG da.DefaultActivitiEngineAgenda  - Operation class org.activiti.engine.impl.interceptor.CommandInvoker$1 added to agenda

2023-06-05 22:53:56,086 6766  [           main] DEBUG itionInfoByProcessDefinitionId  - ==>  Preparing: select * from ACT_PROCDEF_INFO where PROC_DEF_ID_ = ? 

2023-06-05 22:53:56,087 6767  [           main] DEBUG itionInfoByProcessDefinitionId  - ==> Parameters: exclusive:1:87503(String)

2023-06-05 22:53:56,100 6780  [           main] DEBUG itionInfoByProcessDefinitionId  - <==      Total: 0

2023-06-05 22:53:56,102 6782  [           main] DEBUG mpl.interceptor.LogInterceptor  - --- GetProcessDefinitionInfoCmd finished --------------------------------------------------------

2023-06-05 22:53:56,103 6783  [           main] DEBUG mpl.interceptor.LogInterceptor  -

2023-06-05 22:53:56,104 6784  [           main] DEBUG ti.engine.impl.db.DbSqlSession  - Flushing dbSqlSession

2023-06-05 22:53:56,104 6784  [           main] DEBUG ti.engine.impl.db.DbSqlSession  -   insert DeploymentEntity[id=87501, name=出差申请流程-排他网关]

2023-06-05 22:53:56,104 6784  [           main] DEBUG ti.engine.impl.db.DbSqlSession  -   insert ResourceEntity[id=87502, name=bpmn/evection-exclusive.bpmn]

2023-06-05 22:53:56,104 6784  [           main] DEBUG ti.engine.impl.db.DbSqlSession  -   insert ProcessDefinitionEntity[exclusive:1:87503]

2023-06-05 22:53:56,105 6785  [           main] DEBUG ti.engine.impl.db.DbSqlSession  - flush summary: 3 insert, 0 update, 0 delete.

2023-06-05 22:53:56,105 6785  [           main] DEBUG ti.engine.impl.db.DbSqlSession  - now executing flush...

2023-06-05 22:53:56,105 6785  [           main] DEBUG ti.engine.impl.db.DbSqlSession  - inserting: ProcessDefinitionEntity[exclusive:1:87503]

2023-06-05 22:53:56,105 6785  [           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-05 22:53:56,111 6791  [           main] DEBUG tyImpl.insertProcessDefinition  - ==> Parameters: exclusive:1:87503(String), http://www.activiti.org/test(String), 出差流程-排他(String), exclusive(String), 1(Integer), 87501(String), bpmn/evection-exclusive.bpmn(String), null, null, false(Boolean), true(Boolean), 1(Integer), (String), null, null

2023-06-05 22:53:56,126 6806  [           main] DEBUG tyImpl.insertProcessDefinition  - <==    Updates: 1

2023-06-05 22:53:56,126 6806  [           main] DEBUG ti.engine.impl.db.DbSqlSession  - inserting: DeploymentEntity[id=87501, name=出差申请流程-排他网关]

2023-06-05 22:53:56,127 6807  [           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-05 22:53:56,130 6810  [           main] DEBUG entEntityImpl.insertDeployment  - ==> Parameters: 87501(String), 出差申请流程-排他网关(String), null, null, (String), 2023-06-05 22:53:55.621(Timestamp), null, 1(Integer), null

2023-06-05 22:53:56,136 6816  [           main] DEBUG entEntityImpl.insertDeployment  - <==    Updates: 1

2023-06-05 22:53:56,137 6817  [           main] DEBUG ti.engine.impl.db.DbSqlSession  - inserting: ResourceEntity[id=87502, name=bpmn/evection-exclusive.bpmn]

2023-06-05 22:53:56,137 6817  [           main] DEBUG ourceEntityImpl.insertResource  - ==>  Preparing: insert into ACT_GE_BYTEARRAY(ID_, REV_, NAME_, BYTES_, DEPLOYMENT_ID_, GENERATED_) values (?, 1, ?, ?, ?, ?) 

2023-06-05 22:53:56,140 6820  [           main] DEBUG ourceEntityImpl.insertResource  - ==> Parameters: 87502(String), bpmn/evection-exclusive.bpmn(String), java.io.ByteArrayInputStream@1d12e953(ByteArrayInputStream), 87501(String), false(Boolean)

2023-06-05 22:53:56,294 6974  [           main] DEBUG ourceEntityImpl.insertResource  - <==    Updates: 1

2023-06-05 22:53:56,295 6975  [           main] DEBUG aloneMybatisTransactionContext  - firing event committing...

2023-06-05 22:53:56,295 6975  [           main] DEBUG aloneMybatisTransactionContext  - committing the ibatis sql session...

2023-06-05 22:53:56,298 6978  [           main] DEBUG ansaction.jdbc.JdbcTransaction  - Committing JDBC Connection [jdbc:mysql://localhost:3306/activiti?serverTimezone=GMT%2B8, UserName=root@localhost, MySQL Connector/J]

2023-06-05 22:53:56,325 7005  [           main] DEBUG aloneMybatisTransactionContext  - firing event committed...

2023-06-05 22:53:56,329 7009  [           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-05 22:53:56,331 7011  [           main] DEBUG ansaction.jdbc.JdbcTransaction  - Closing JDBC Connection [jdbc:mysql://localhost:3306/activiti?serverTimezone=GMT%2B8, UserName=root@localhost, MySQL Connector/J]

2023-06-05 22:53:56,331 7011  [           main] DEBUG mpl.interceptor.LogInterceptor  - --- DeployCmd finished --------------------------------------------------------

2023-06-05 22:53:56,331 7011  [           main] DEBUG mpl.interceptor.LogInterceptor  -

流程部署id:87501

流程部署名称:出差申请流程-排他网关

Disconnected from the target VM, address: '127.0.0.1:64534', transport: 'socket'

Process finished with exit code 0

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/613502.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

剑指offer刷题笔记--题目11-20

1-旋转数组的最小数字&#xff08;11&#xff09; 主要思路&#xff1a; 一次旋转将最后一个元素移动最前面&#xff0c;由于数组最开始是升序的&#xff0c;因此数组的大部分元素都应该保持升序的状态&#xff08;n1<n2<...<n3>n4<n5<...<n6&#xff09;…

JAVA练习小游戏——贪吃蛇小游戏 PLUS版

目录 基础版本 新增内容 1.添加START开始界面 2.新增背景音乐 3.添加SCORE计分 4.新增游戏机制 代码实现 实机演示 基础版本 JAVA练习小游戏——贪吃蛇小游戏_timberman666的博客-CSDN博客https://blog.csdn.net/timberman666/article/details/131046742?spm1001.201…

xshell使用技巧小节

文章目录 1. 输出日志文件2. 快捷键设置3. 使用ctrlv按键4. 快速命令 1. 输出日志文件 需求&#xff1a;我们使用xshell时会经常需要把xshell中的内容打印到文件中&#xff0c;或者因为内容过多&#xff0c;xshell界面无法显示先显示出的内容&#xff0c;或者需要明确记录文件…

AlterNET Studio v9.0 Crack

AlterNET Studio v9.0 改进了代码编辑器、表单设计器和 Python LSP 解析器。 2023 年 6 月 5 日 - 11:22新版本 特征 代码编辑器 编辑器中添加了 Microsoft Visual Studio 主题。现在包括一个放大镜区域&#xff0c;可以更轻松地浏览文档的内容。带有 alpha 通道的图像现在用于…

汽车电子AUTOSAR之EcuM模块

目录 前言 正文 EcuM模块总体介绍 主要功能 总状态机&#xff08;Flexible 与 Fixed&#xff09; Startup Sequence STARTUP I STARTUP II RUN Sequence RUN II RUN III ShutDown Sequence ShutDown Target Go Sleep Go OFF I Go OFF II Sleep Sequence Sleep…

如何从平面图或蓝图为 ROS 创建地图

如何从平面图或蓝图为 ROS 创建地图 在本教程中&#xff0c;我将向您展示如何从平面图或蓝图为 RViz&#xff08;ROS 的 3D 可视化程序&#xff09;创建地图。为 RViz 创建地图是使机器人能够在环境中自主导航的重要步骤。 我们经常使用机器人的激光雷达来构建地图。这很好&am…

【openeuler】Yocto embedded sig例会 (2023-01-12)

Yocto & embedded sig例会 (2023-01-12)_哔哩哔哩_bilibili

群智能算法-模拟退火

一.基本理念 模拟退火算法(Simulated Annealing,简称SA) 的思想最早是由Metropolis等提出的.其出发点就是基于物理中固体物质的退火过程与一般的组合优化问题之间的相似性。模拟退火法是一种通用的优化算法&#xff0c;其物理退火过程由以下三部分组成。 加温过程&#xff1a;我…

AutoHand插件使用指南

一、设置 1.软件包设置 Auto Hand 包括四个内置的输入选项。AutoHand不直接管理输入,而是包含各种脚本,充当所选输入系统和Auto Hand之间的桥梁。 这里只介绍OpenXR(Action Based),首先作如下设置: 我这里用的是HTC Vive Pro: 找到并导入AutoHand插件中的OpenXR这个包:…

java错题记录(一)

一、观察下类代码&#xff0c;输出正确的是 String s1 "coder"; String s2 "coder"; String s3 "coder" s2; String s4 "coder" "coder"; String s5 s1 s2; System.out.println(s…

SELD2022:(一)数据集收集与组织详解

前言&#xff1a;声音事件检测与定位&#xff08;SELD&#xff09;作为DCASE挑战赛的子任务&#xff0c;从2019年开始已经举办了好几届。该子任务的目标也从2022年开始由原来的在仿真数据集上设计更优声学模型&#xff0c;过渡到了在真实数据集上进行模型优化。相对而言&#x…

Omnipeek 分析wifi包简单介绍

通常打开一个.pkt文件&#xff0c;我们先看到的是如下内容。 这个场景下的数据基本是不能分析的。。 因为抓空口包1分20秒基本有10w包了&#xff0c;所以通常会对所抓的空口包进行过滤然后分析。 写个例子&#xff1a; 我本次抓包的目的是看路由器mesh的wps 组网过程&#xf…

海睿思分享 | 低代码开发直面行业变革:革新,创新?

软件体系结构从单体集群服务时期&#xff0c;历经领域驱动设计、微服务架构等阶段&#xff0c;软件产品的开发过程的变革正在潜移默化地进行。 在软件逻辑架构设计、物理架构设计、构建与部署这一系列化的过程中&#xff0c;存在可缩减的设计与开发成本&#xff0c;曾经看似不可…

力扣高频SQL50题(基础版)——第六天

力扣高频SQL50题(基础版)——第六天 1 平均售价 1.1 题目内容 1.1.1 基本题目信息1 1.1.2 基本题目信息2 1.1.3 示例输入输出 1.2 示例sql语句 SELECT u.product_id,ROUND(SUM(p.price*u.units)/SUM(u.units),2) average_price FROM UnitsSold u INNER JOIN Prices p ON u.…

Linux :: 文件内容操作【6】:文件中指定中间部分(第多少行 到 第多少行)行内容输出 及 初步认识管道

前言&#xff1a;本篇是 Linux 基本操作篇章的内容&#xff01; 笔者使用的环境是基于腾讯云服务器&#xff1a;CentOS 7.6 64bit。 学习集&#xff1a; C 入门到入土&#xff01;&#xff01;&#xff01;学习合集Linux 从命令到网络再到内核&#xff01;学习合集 注&#xff…

OpenAI的人工智能语音识别模型Whisper详解及使用

1 whisper介绍 拥有ChatGPT语言模型的OpenAI公司&#xff0c;开源了 Whisper 自动语音识别系统&#xff0c;OpenAI 强调 Whisper 的语音识别能力已达到人类水准。 Whisper是一个通用的语音识别模型&#xff0c;它使用了大量的多语言和多任务的监督数据来训练&#xff0c;能够在…

Linux中使用ls命令按大小对所有文件进行排序

按大小列出目录中的文件(排序) ls -lSh

AI版女网红“半藏森林”上线,服务项目让人意想不到

目前首批网红明星“AI克隆人”已提前上线&#xff0c;主营业务就是打造各种名人版AI聊天机器人&#xff0c;用户付费便可与之聊天。其后台报名参加AI克隆人的网红明星“全网粉丝总数已超过5亿”。该公司这波上线的网红明星AI克隆人&#xff0c;包括此前因“疑似插足他人恋情”&…

腾讯工作3个月,做测试的一些感悟...

普通二本计算机专业毕业&#xff0c;从毕业后&#xff0c;第一份接触测试的工作是在一家通讯小公司&#xff0c;大部分接触的工作是以功能测试为主&#xff0c;一直都是几千块钱工资&#xff0c;还一度被派出差&#xff0c;以及兼职各种产品、运维、运营的活&#xff0c;感觉自…

TS学习操作

一.TypeScript环境安装与运行 1.全局安装 TypeScript &#xff1a; npm install -g typescript 2.校验 &#xff1a; tsc -v 二.如何运行 1.创建一个day01.ts文件夹 2.使用tsc ./day01.ts 将typescript代码转行成js代码 3.在html页面导入day01.js 4.创建配置文件 tsc --i…