上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页
摘要: background-color:transparent; 阅读全文
posted @ 2018-09-06 14:41 lvlin241 阅读(3027) 评论(0) 推荐(0)
摘要: 思路:把对象转换为字符串进行传递 参考:https://blog.csdn.net/shuai870081885/article/details/51283390 阅读全文
posted @ 2018-09-06 11:41 lvlin241 阅读(1120) 评论(0) 推荐(0)
摘要: 问题: 一个界面有个多个文本框输入值(或下拉框)展示的查询条件,也就是组合条件查询,需要在java里面动态拼接SQL,where条件如何写? 解决思路: 在where关键字后面固定写 1=1, 若还有其他条件,直接拼接 " and 条件 "。 阅读全文
posted @ 2018-09-05 10:20 lvlin241 阅读(4079) 评论(0) 推荐(0)
摘要: /** * 时间戳转换为日期 */ function convertTimestamp(timestamp){ // 时间戳转换为日期 var d = new Date(timestamp); // 日期按指定格式输出(例如: 2018-09-03 17:09:45) var year = date.getFullYear(); var month = ... 阅读全文
posted @ 2018-09-03 17:45 lvlin241 阅读(498) 评论(0) 推荐(0)
摘要: 参考: https://blog.csdn.net/dandelion_drq/article/details/79270597 改变Y轴单位:https://www.cnblogs.com/conserdao/p/6911048.html 阅读全文
posted @ 2018-08-30 12:03 lvlin241 阅读(975) 评论(0) 推荐(0)
摘要: 参考:https://blog.csdn.net/u011262847/article/details/78007119 阅读全文
posted @ 2018-08-29 14:52 lvlin241 阅读(4475) 评论(0) 推荐(0)
摘要: 参考:https://stackoverflow.com/questions/38928991/how-to-detect-if-a-document-update-in-elasticsearch-has-failed# 阅读全文
posted @ 2018-08-28 15:21 lvlin241 阅读(2472) 评论(0) 推荐(0)
摘要: 1、java API 参考:https://blog.csdn.net/liuxiao723846/article/details/78707094 2、更新数据 参考:https://blog.csdn.net/weixin_38809962/article/details/79768002 阅读全文
posted @ 2018-08-28 09:42 lvlin241 阅读(179) 评论(0) 推荐(0)
摘要: 参考:https://blog.csdn.net/thatluck/article/details/52080736 阅读全文
posted @ 2018-08-23 11:42 lvlin241 阅读(406) 评论(0) 推荐(0)
摘要: http://mvnrepository.com/ 阅读全文
posted @ 2018-08-19 18:09 lvlin241 阅读(108) 评论(0) 推荐(0)
摘要: 参考:https://blog.csdn.net/fengsheng5210/article/details/80491731 阅读全文
posted @ 2018-08-19 18:07 lvlin241 阅读(204) 评论(0) 推荐(0)
摘要: 参考: 下载: https://www.elastic.co/downloads 使用: https://www.elastic.co/downloads/elasticsearch https://www.elastic.co/products/elasticsearch (主流编程语言使用) h 阅读全文
posted @ 2018-08-16 10:44 lvlin241 阅读(153) 评论(0) 推荐(0)
摘要: 前置知识 异步编程_基础 异步编程_应用场景 异步编程性能调优思路 垃圾回收优化 # 异步编程会产生大量短生命周期对象,如CompletableFuture、Lambda表达式捕获的变量等。 # 这些对象主要在年轻代分配,需要调优年轻代大小和GC参数。使用G1GC或ZGC可以减少GC停顿时间。 # 阅读全文
posted @ 2018-08-09 11:39 lvlin241 阅读(189) 评论(0) 推荐(0)
摘要: 异步编程应用场景 1. 数据治理场景 1.1 异步数据质量检查系统 import java.util.concurrent.CompletableFuture; import java.util.concurrent.ExecutorService; import java.util.concurr 阅读全文
posted @ 2018-08-08 11:57 lvlin241 阅读(156) 评论(0) 推荐(0)
摘要: 异步编程与多线程 /** * 背景:Java中多线程与异步编程是比较核心的特性,而且很多优秀组件源码中都将2者结合起来使用,为什么异步编程需要线程呢?相信很多JAVA初学者比较迷茫 * 核心原因:异步编程的本质是"同时做多件事",而线程是操作系统提供的"同时做多件事"的机制。 * 具体原因:物理限制 阅读全文
posted @ 2018-08-07 18:36 lvlin241 阅读(321) 评论(0) 推荐(0)
摘要: 参考:https://docs.pivotal.io/search?q=function 阅读全文
posted @ 2018-08-01 09:47 lvlin241 阅读(3167) 评论(0) 推荐(0)
摘要: 涉及的索引表 参考:http://blog.nbhao.org/1539.html 获取 某个数据表 所有的索引(主表索引&&分区表索引) 阅读全文
posted @ 2018-07-31 10:54 lvlin241 阅读(387) 评论(0) 推荐(0)
摘要: CPU核数 查看代码 # CPU核数指CPU的物理核心数量,每个核心可独立执行指令。 # CPU核数就像工厂里的工人数量。每个核心就是一个独立的工人,能够同时处理不同的任务。现代CPU通常有2-16个核心,高端服务器可能有几十个核心。 # 核心越多,CPU并行处理任务的能力越强。例如,4核CPU可同 阅读全文
posted @ 2018-07-31 10:23 lvlin241 阅读(127) 评论(0) 推荐(0)
摘要: raise notice 'just a simple output msg'; 阅读全文
posted @ 2018-07-27 17:34 lvlin241 阅读(1194) 评论(0) 推荐(0)
摘要: 1、打开命令提示符,进入需更新文件所在的目录下2、批量命名 ren *.* *.自己需要的后缀 阅读全文
posted @ 2018-07-18 16:44 lvlin241 阅读(196) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页