摘要: 公司用的是ligerui 1.3.3版本,在做行编辑的时候给列添加了frozen:true属性,出现了行编辑编辑框与列错位,取消后列与编辑框对应正常 阅读全文
posted @ 2017-07-11 11:06 silentax 阅读(617) 评论(0) 推荐(0) 编辑
摘要: 以前只运用过单例模式,但是没有具体的了解过单例模式的含义,今天去面试让一下一个类只实例化一次,想了好久没想出来,回来查了资料才知道是单例模式,记录下来。public class Singleton { private static Singleton uniqueInstance = new Sin 阅读全文
posted @ 2017-07-03 12:51 silentax 阅读(1953) 评论(0) 推荐(0) 编辑
摘要: mybatis判断参数是否等于0写法: <if test="check != null and check != '' " and check =="0".toString() > 必须添加参数.toString(),否则没有效果 阅读全文
posted @ 2017-06-23 00:16 silentax 阅读(1707) 评论(0) 推荐(0) 编辑