上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 33 下一页
摘要: 前言 本文是 Redux 及 Redux 配合 React 开发的教程,主要翻译自 Leveling Up with React: Redux,并参考了 Redux 的文档及一些博文,相对译文原文内容有增减修改。 目录 前言 目录 什么是 Redux,为什么使用 Redux Redux 的三大基本原 阅读全文
posted @ 2019-05-19 12:57 金虹巴巴 阅读(394) 评论(0) 推荐(0) 编辑
摘要: 1.自定义个一个继承SQLServerDialect的dialect类 public class MySQLServer2008Dialect extends SQLServer2008Dialect { public MySQLServerDialect() { super(); register 阅读全文
posted @ 2019-04-27 11:04 金虹巴巴 阅读(574) 评论(0) 推荐(0) 编辑
摘要: 1.如果配置文件格式为application.properties,在配置文件中添加以下代码即可: spring.jpa.database-platform=org.hibernate.dialect.MySQL5Dialect 2.如果配置文件格式为application.yml,则在JPA配置中 阅读全文
posted @ 2019-04-26 17:40 金虹巴巴 阅读(3434) 评论(0) 推荐(0) 编辑
摘要: [root@localhost ~]# wget https://dl.minio.io/server/minio/release/linux-amd64/minio -bash: wget: 未找到命令[root@localhost ~]# yum -y install wget 已安装: wge 阅读全文
posted @ 2019-04-06 14:38 金虹巴巴 阅读(14269) 评论(0) 推荐(0) 编辑
摘要: 一、问题描述:xshell连接不了虚拟机,出现错误提示:Could not connect to '192.168.1.100' (port 22): Connection failed. 二、查找错误原因: 1、登录虚拟机,打开终端,切换到root用户,输入systemctl start sshd 阅读全文
posted @ 2019-04-06 13:50 金虹巴巴 阅读(7772) 评论(0) 推荐(0) 编辑
摘要: Mysql时间加减函数为date_add()、date_sub() 定义和用法DATE_ADD() 函数向日期添加指定的时间间隔。DATE_SUB() 函数向日期减少指定的时间间隔。语法DATE_ADD(date,INTERVAL expr type)DATE_SUB(date,INTERVAL e 阅读全文
posted @ 2019-02-28 14:12 金虹巴巴 阅读(39582) 评论(0) 推荐(1) 编辑
摘要: CREATE DEFINER=`root`@`localhost` PROCEDURE `SP_test`(IN `nodeCode` varchar(100),IN `id` varchar(36))BEGINDECLARE taskId varchar(100) DEFAULT '';DECLA 阅读全文
posted @ 2019-02-27 16:52 金虹巴巴 阅读(758) 评论(0) 推荐(0) 编辑
摘要: 一个任务需要多个角色进行审批或者表决,根据这些审批结果来决定流程的走向。实现以上任务,activiti已经提供了支持,可以使用BPMN规范的多实例活动来实现。 1.Activiti多实例: 多实例节点是在业务流程中定义重复环节的一个方法。 从开发角度讲,多实例和循环是一样的: 它可以根据给定的集合, 阅读全文
posted @ 2019-02-23 22:29 金虹巴巴 阅读(17524) 评论(0) 推荐(2) 编辑
摘要: npm install -g create-react-appcreate-react-app my-appcd my-app/ 启动项目:npm start 安装依赖:npm install 编译:npm run build 阅读全文
posted @ 2019-01-22 09:42 金虹巴巴 阅读(3850) 评论(0) 推荐(0) 编辑
摘要: 一 1.根据当前任务id获得当前任务对象 Task task = processEngine.getTaskService().createTaskQuery().taskId(taskId).singleResult();2.根据流程id获得流程实例 ProcessInstance pi =pro 阅读全文
posted @ 2019-01-12 13:29 金虹巴巴 阅读(760) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 33 下一页