摘要:
Mybatis中出现该异常 There is no getter for property named 'col_name' in 'class com.xxx.onebean 意思是onebean这个实体中没有变量col_name的getter方法。这种情况可能使: 1.真的没有加getter方法 阅读全文
摘要:
Class对象 获取Class对象三种方式: Person p = new Person(); Class c = p.getClass(); Class c2 = Person.class; Class c3 = Class.forName("com.qy.entity.Person"); 实例化 阅读全文
摘要:
where 及 order by 涉及的列上建立索引。 where子句中使用!=或<>操作符时,会导致引擎放弃使用索引而进行全表扫描。 like ‘%...%’(全模糊)这样的条件,是无法使用索引的,也会导致全表扫描。 where 子句中对字段进行 null 值判断时,会导致引擎放弃使用索引而进行全 阅读全文