white knight

导航

 
上一页 1 2 3 4 5 6 7 8 ··· 16 下一页

2018年8月17日

摘要: 参考 http://blog.163.com/gis_warrior/blog/static/19361717320153111134135/ 检查是否有[],或者是否多次定义同一个module 标准定义 angular.module('1yd.config',[]) 加上[]表示定义,没有[]表示 阅读全文
posted @ 2018-08-17 16:41 white knight 阅读(204) 评论(0) 推荐(0) 编辑
 
摘要: spring security 配置问题,静态资源未被允许访问 阅读全文
posted @ 2018-08-17 16:28 white knight 阅读(3960) 评论(0) 推荐(0) 编辑
 

2018年8月9日

摘要: 某个单元格使用jx:each报这个错误。 内部代码,创建一个二维数组时,传了一个负值进去 解决办法 将这个单元格删除,重新编写批注 阅读全文
posted @ 2018-08-09 10:58 white knight 阅读(479) 评论(0) 推荐(0) 编辑
 

2018年8月7日

摘要: select a1.* (select a.*, rownum rn from (select * from table1 where field1 = ? order by field2) a where rownum > ???) a1 where a1.rn <= ??? 阅读全文
posted @ 2018-08-07 17:21 white knight 阅读(61) 评论(0) 推荐(0) 编辑
 
摘要: @Configurationpublic class WebMvcConfig extends WebMvcConfigurerAdapter { public void addResourceHandlers(ResourceHandlerRegistry registry) { registry 阅读全文
posted @ 2018-08-07 11:42 white knight 阅读(159) 评论(0) 推荐(0) 编辑
 

2018年8月6日

摘要: CriteriaBuilder.In in = criteriaBuilder.in(root.get("field1")); for (String str : arr) { in.value(str);} 阅读全文
posted @ 2018-08-06 15:44 white knight 阅读(113) 评论(0) 推荐(0) 编辑
 
摘要: jdbcTemplate 的第三个参数一定要是int[]数组,而不能是Object[]数组 阅读全文
posted @ 2018-08-06 11:35 white knight 阅读(469) 评论(0) 推荐(0) 编辑
 
摘要: public void batchImport(List> list) { String sql = "insert into table1(field1, field2) values(?,?)"; int[] types = new int[2]; types[0] = Types.VARCHAR; types[1] = Types.NUMER... 阅读全文
posted @ 2018-08-06 11:34 white knight 阅读(538) 评论(0) 推荐(0) 编辑
 

2018年8月3日

摘要: 参考 https://www.cnblogs.com/wangtao1993/p/6144183.html 阅读全文
posted @ 2018-08-03 17:43 white knight 阅读(81) 评论(0) 推荐(0) 编辑
 
摘要: CREATE OR REPLACEPROCEDURE PROCE_NAME(V_IN varchar2, V_OUT out varchar2) ASBEGIN --... commit; V_OUT := 'aaa';exception when others then V_OUT := '999 阅读全文
posted @ 2018-08-03 16:29 white knight 阅读(127) 评论(0) 推荐(0) 编辑
 
上一页 1 2 3 4 5 6 7 8 ··· 16 下一页