摘要:
阅读全文
摘要:
各个Service的作用: RepositoryService 管理流程定义 RuntimeService 执行管理,包括启动、推进、删除流程实例等操作 TaskService 任务管理 HistoryService 历史管理(执行完的数据的管理) IdentityService 组织机构管理 Fo 阅读全文
摘要:
转自 https://blog.csdn.net/u013039395/article/details/86528164 一、编程规约 (一) 命名风格 【强制】代码中的命名只可用英文方式 【强制】类名使用UpperCamelCase风格, 但以下例外:(分层领域模型规约2) - DO( Data 阅读全文
摘要:
bigint 20位数字 8个字节从 -2^63 (-9223372036854775808) 到 2^63-1 (9223372036854775807) 的整型数据(所有数字)。存储大小为 8 个字节。 9223372036854775808P.S. bigint已经有长度了,在mysql建表中 阅读全文
摘要:
oracle集群Oracle RAC是业界最流行的产品。其架构的最大特点是共享存储架构(Shared-disk),整个RAC集群是建立在一个共享的存储设备之上的,节点之间采用 高速网络互连。在 Oracle RAC 环境中,每个 Oracle 数据块都被赋予一个(且只有一个)“主”Oracle RA 阅读全文
摘要:
https://github.com/spring-projects/spring-framework/tagshttp://repo.springsource.org/libs-release-local/ 阅读全文
摘要:
http://www.cnblogs.com/xiaoluo501395377/archive/2013/04/07/3003278.htmlhttp://blog.csdn.net/ldl22847/article/details/7941962http://www.cnblogs.com/me-... 阅读全文
摘要:
http://www.baidufe.com/item/92457b4d0bfde1effa40.html 阅读全文
摘要:
linux 如何显示一个文件的某几行(中间几行)【一】从第3000行开始,显示1000行。即显示3000~3999行cat filename | tail -n +3000 | head -n 1000【二】显示1000行到3000行cat filename| head -n3000| tail -... 阅读全文
摘要:
import java.util.UUID; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; public class TestUUID implements Runnable {... 阅读全文