摘要:
JDK 8 Class HashSet<E> Doc: public class HashSet<E> extends AbstractSet<E> implements Set<E>, Cloneable, Serializable 1、实现了java.util.Set接口,内部由java.uti 阅读全文
摘要:
我们有张表,表中有一个字段 dpt_date ,SQL 类型为 date,表示离开日期。 我们将 dpt_date 与字符串 ‘2016-03-09’ 进行比较,发现效率低于 dpt_date 转换为字符串再与 ‘2016-03-09’ 进行比较: SELECT * FROM tbl_name WH 阅读全文
摘要:
网上看到的描述Git工作流程的图片,有些出处忘了保存,仅供学习。 1. One Git Branching Model 出处: http://nvie.com/posts/a-successful-git-branching-model 2. git merge 阅读全文
摘要:
常见的与“直觉”相背离的 anti-pattern 产生的实际原因是我们没有深入全面地考虑问题。 即只关注到自己关心的方面,忽略了其他重要的、恰好起相反作用的因素。 所以这个“直觉”是不成熟、不全面的“直觉”。 比如 Brook's Law。 一系列的 anti-pattern 参考 Wikiped 阅读全文
摘要:
一些笔记。 strategy : facilitates the switch of the different but related algorithms/behaviors observer proxy : controls the access to the real subject ; s 阅读全文
摘要:
持续更新中。 Every MyBatis application centers around an instance of SqlSessionFactory A cleaner approch to excecuting SQL commands : using an interface tha 阅读全文
摘要:
以下资料来源于网络,仅供参考学习。 MapperScannerConfigurer是spring和mybatis整合的mybatis-spring jar包中提供的一个类。 想要了解该类的作用,就得先了解MapperFactoryBean。 MapperFactoryBean的出现为了代替手工使用S 阅读全文
摘要:
《基于 MyBatis 框架的批量数据插入的性能问题的探讨》(作者:魏静敏 刘欢杰 来源:《计算机光盘软件与应用》 2013 年第 19 期)中提到批量插入的记录数不能超过1000条,实测可以插入超过1000条。 阅读全文
摘要:
以下资料来源于网络,仅供参考学习。 mybatis 遍历map实例 map 数据如下 Map<String,List<Long>>. 测试代码如下: 1 public void getByMap() { 2 Map<String,List<Long>> params=new HashMap<Stri 阅读全文
摘要:
equals() 是 java.lang.Object 的一个实例方法,被所有的子类所继承(可被复写)。 以下是 JDK 8 中 java.lang.Object.equals() 源码: 这个方法很简单,当自身和自身比较时,才返回 true。 不同的子类可能会重写这个方法,提供不同的实现。 下面是 阅读全文