摘要:
找到第N大的数字, 如果没有就显示为NULL 测试脚本如下: create table ( int (11), int (11) ); insert into ( , ) values('12','761'); insert into ( , ) values('6','1037'); insert 阅读全文
摘要:
1. 下载源代码 https://github.com/spring projects/spring framework 我选择版本5.1.x 2. 网上有说需要下载gradle,其实可以不用下载 3. build项目 4. 导入项目 需要注意的是 gradle 版本不对可能会出现很多奇奇怪怪的错误 阅读全文
摘要:
1. ArrayList初始化值大于Integer.MAX_VALUE 8 List arrayList = new ArrayList(Integer.MAX_VALUE); 阅读全文
摘要:
分布式事务涉及 分布式文件系统 缓存系统 数据库 大型分布式存储系统 参考文献: https://yq.aliyun.com/articles/596048 https://www.infoq.cn/article/wtl6iX4UDcri9MGC5qBf https://www.sofastack 阅读全文
摘要:
``` 4.0.0 com.mjz generatorByTable 1.0-SNAPSHOT UTF-8 org.mybatis.generator mybatis-generator-core 1.3.7 org.apache.maven.plugins maven-compiler-plugin 1.8 1.8 3.8.1 org.mybatis.generator mybatis-gene 阅读全文
摘要:
``` package com.shzd.common.utils.utils; import org.apache.commons.codec.digest.DigestUtils; import java.util.TreeMap; public class BBLSignUtils { public static String str2md5(String str){ re... 阅读全文
摘要:
https://www.activiti.org/userguide/ bpmn20 阅读全文
摘要:
``` package com.shzd.common.utils.utils; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.ObjectOutputStream; import j 阅读全文