- 博客(5)
- 收藏
- 关注
原创 Stream 排序
List<OmAppDeployTaskView> stream= page.stream().sorted(Comparator.comparing(OmAppDeployTaskView::getInsertTime).reversed()).collect(Collectors.toList());
2018-07-30 16:36:46
1472
原创 JQ checked 全选 反选
$("table").delegate(".allcheck",'click',function(){ $(this).toggleClass('checked'); var table = $(this).parent().parent().parent().parent(); var tbody = table.child...
2018-07-26 19:52:44
612
原创 Oracle 统计每10分钟的数据量
select to_char(begin_time, 'yyyy-mm-dd hh24'), trunc(to_char(begin_time, 'mi')/10), count(1), sum(log_num)from tb_e2e_trace_0616group by to_char(begin_time, 'yyyy-mm-dd hh24'), trunc(to_char(begin_tim...
2018-06-27 15:34:34
8235
1
原创 JSON转换成实体类(实体类嵌套多层list)
在项目中,rabbitMQ返回的不是JSON而是二进制数json jar :import com.alibaba.fastjson.JSON;import net.sf.json.JSONObject;@MessageQueueListener(queues = "check_result_v1_queue_test0530") public void process(byte[] result)...
2018-06-01 14:10:47
10598
原创 window.loaction.herf与ajax在下载文件时的区别
window.location.href的用法window.location.href:"url",在本页跳转到url所指的链接 window.location.replace:"url",用新的url替换原先的路径 window.location.reload(),强制刷新页面,重新向服务端发送请求 location.href:"url",在本页跳转到链接地址 parent.location.h...
2018-05-30 09:38:56
3313
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人