上一页 1 2 3 4 5 6 7 ··· 17 下一页
摘要: mybatis映射中可以通过<foreach></foreach>标签来实现Oracle的批量插入、更新和删除 <foreach>标签中主要有以下属性: collection、item、index、open、separate、close collection:该属性必须指定,指代Dao层接口传递的数 阅读全文
posted @ 2021-06-09 00:18 奇异宝 阅读(868) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/a2a77a81c8ee 阅读全文
posted @ 2021-05-19 17:06 奇异宝 阅读(689) 评论(0) 推荐(0) 编辑
摘要: 解决方式:去掉form即可。 阅读全文
posted @ 2021-05-07 20:45 奇异宝 阅读(234) 评论(0) 推荐(0) 编辑
摘要: json返回数据不完整问题解决: https://blog.csdn.net/qinxu0611/article/details/86146171?utm_medium=distribute.pc_relevant.none-task-blog-2%7Edefault%7EBlogCommendFr 阅读全文
posted @ 2021-04-25 10:25 奇异宝 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 正确写法: $.ajax({ type: "get", url: '<%=APP_URL_ZZGRID%>/zzgl/map/data/situation/getPlayRtspJsonp.json', dataType: "jsonp", jsonp: "jsoncallback", data: 阅读全文
posted @ 2021-04-18 00:37 奇异宝 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 1、使用to_char先转为字符型,在使用to_date再转为日期型 select to_date(to_char(systimestamp,'yyyy/mm/dd hh24:mi:ss'),'yyyy/mm/dd hh24:mi:ss') from dual; 2、使用SYSTIMESTAMP+0 阅读全文
posted @ 2021-04-09 10:33 奇异宝 阅读(233) 评论(0) 推荐(0) 编辑
摘要: 将逗号分隔的字符串转换为List List<String> list = Arrays.asList(str.split(",")); List<String> list = Arrays.asList(StringUtils.split(str, ",")); 将list转化为逗号分割的字符串 S 阅读全文
posted @ 2021-04-06 14:33 奇异宝 阅读(485) 评论(0) 推荐(0) 编辑
摘要: 转发:https://segmentfault.com/a/1190000016418021?utm_source=tag-newest 阅读全文
posted @ 2021-04-01 11:14 奇异宝 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 转自 https://www.cnblogs.com/Richardzhu/p/3437925.html 阅读全文
posted @ 2021-03-11 10:28 奇异宝 阅读(91) 评论(0) 推荐(0) 编辑
摘要: Oracle导出DMP文件的两种方法--未验证 阅读全文
posted @ 2021-03-10 23:08 奇异宝 阅读(46) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 17 下一页