摘要: 查看docker 服务是否启动 service docker status /systemctl docker status 查看所有容器 docker ps -a 运行容器 docker start names(容器名称) 停止容器运行 docker stop {containerID} 删除容器 阅读全文
posted @ 2020-04-10 23:04 自己的太阳 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 我操作的linux 地址:172.20.10.10 1、kafka需要zookeeper管理,所以需要先安装zookeeper。 下载zookeeper镜像 $ docker pull wurstmeister/zookeeper 2、启动镜像生成容器 $ docker run -d --resta 阅读全文
posted @ 2020-04-10 22:25 自己的太阳 阅读(8302) 评论(1) 推荐(0) 编辑
摘要: public void startProcessEngine(){ ProcessEngine engine = ProcessEngines.getDefaultProcessEngine(); //获得运行service RuntimeService service = engine.getRu 阅读全文
posted @ 2020-04-10 11:34 自己的太阳 阅读(711) 评论(0) 推荐(0) 编辑
摘要: /** * 部署流程图 */ @Test public void buildProcessEngine(){ //获取流程引擎对象 ProcessEngine engine = ProcessEngines.getDefaultProcessEngine(); //根据流程引擎对象获取流程部署服务对 阅读全文
posted @ 2020-04-10 10:47 自己的太阳 阅读(1176) 评论(0) 推荐(0) 编辑
摘要: import org.activiti.engine.ProcessEngine; import org.activiti.engine.ProcessEngineConfiguration; import org.junit.Test; /** * Activity 初始化 * @author M 阅读全文
posted @ 2020-04-10 10:03 自己的太阳 阅读(1258) 评论(0) 推荐(0) 编辑
摘要: Eclipse 安装 Activity 插件 1)通过网址:https://pan.baidu.com/s/1xmgqiA7msNImhtjW_7S2bw 提取码(xyxg)下载安装包。 (2)删除eclipse安装目录下,configuration文件夹里的org.eclipse.update文件 阅读全文
posted @ 2020-04-10 09:54 自己的太阳 阅读(1810) 评论(0) 推荐(0) 编辑