雪洗中关村

导航

2018年5月22日 #

关于Hibernate性能优化之 FetchType=Lazy时查询数据

摘要: 来源:https://blog.csdn.net/janefir/article/details/19555803 阅读全文

posted @ 2018-05-22 18:01 雪洗中关村 阅读(5045) 评论(0) 推荐(0) 编辑

2018年5月16日 #

java导出Excel 好文收藏

摘要: http://www.cnblogs.com/Damon-Luo/p/5919656.html https://www.cnblogs.com/klguang/p/6425422.html 阅读全文

posted @ 2018-05-16 11:15 雪洗中关村 阅读(121) 评论(0) 推荐(0) 编辑

layer关闭弹出层总结

摘要: //关闭方法1 layer提供了5种层类型。可传入的值有:0(信息框,默认)1(页面层)2(iframe层)3(加载层)4(tips层)。 若你采用layer.open({type: 1})方式调用,则type为必填项(信息框除外) layer.closeAll(); //疯狂模式,关闭所有层 layer.closeAll('dialog'); //0.关闭信... 阅读全文

posted @ 2018-05-16 11:12 雪洗中关村 阅读(460) 评论(0) 推荐(0) 编辑

mysql query 条件中为空时忽略

摘要: ☆1. q.ques_group传入为null或''的时候不查询此条件: value = "SELECT * FROM question q WHERE 1=1 AND (q.ques_group = :quesGroup or :quesGroup is null or :quesGroup='') AND q.type = :type", ... 阅读全文

posted @ 2018-05-16 11:07 雪洗中关村 阅读(359) 评论(0) 推荐(0) 编辑

idea快捷键 好的网址收藏

摘要: http://blog.csdn.net/u010800804/article/details/48491395http://blog.csdn.net/wei83523408/article/details/60472168https://www.cnblogs.com/zhangpengshou 阅读全文

posted @ 2018-05-16 11:01 雪洗中关村 阅读(90) 评论(0) 推荐(0) 编辑

idea_快捷键default&eclipse

摘要: 关键字: SpringMybatisplusRedisApplicationTests github关键字(springboot拦截器完整项目): implements WebMvcConfigurer 199 237 204 Ctrl+Shift+A ... 阅读全文

posted @ 2018-05-16 10:53 雪洗中关村 阅读(404) 评论(0) 推荐(0) 编辑

批量修改某文件夹下所有文件的后缀

摘要: ☆1 批量修改某文件夹下所有文件的后缀: Ren C:\Users\lx396\AppData\Local\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets\*.* *.png 阅读全文

posted @ 2018-05-16 10:50 雪洗中关村 阅读(306) 评论(0) 推荐(0) 编辑

bootstrap中如何控制input的宽度

摘要: ☆1☆ bootstrap中如何控制input的宽度: v2版本:定义了很多class,可用在input。 "input-block-level"、"input-mini"、"input-small" 、"input-medium"、"input-medium"、 "input-large"、"input-xlarge" 、"input-xxla... 阅读全文

posted @ 2018-05-16 10:47 雪洗中关村 阅读(18620) 评论(0) 推荐(0) 编辑

日期加减

摘要: JavaScript: function addDate(date, days) { //格式:addDate('2017-1-11', -20) var d = new Date(Date.parse(date.replace(/-/g, "/")));//兼容性处理 d.setDate(d.getDate() + days); var ... 阅读全文

posted @ 2018-05-16 10:31 雪洗中关村 阅读(151) 评论(0) 推荐(0) 编辑

JS校验 if (! temp_var) {} //拦截 ''和 undefined

摘要: if (! aaa) {} //拦截 ' ' 和 undefined 和 0 不拦截null 阅读全文

posted @ 2018-05-16 10:17 雪洗中关村 阅读(212) 评论(0) 推荐(0) 编辑