上一页 1 ··· 90 91 92 93 94 95 96 97 98 ··· 234 下一页
摘要: 原文地址:http://blog.csdn.net/hengyunabc/article/details/18459463 这个所谓的try-with-resources,是个语法糖。实际上就是自动调用资源的close()函数。和Python里的with语句差不多。 例如: [java] view 阅读全文
posted @ 2017-08-21 21:07 一天不进步,就是退步 阅读(302) 评论(0) 推荐(0)
摘要: 来自微信公众号 架构师之路 功能问题,通过日志,单步调试相对比较好定位。 性能问题,例如线上服务器CPU100%,如何找到相关服务,如何定位问题代码,更考验技术人的功底。 58到家架构部,运维部,58速运技术部联合进行了一次线上服务CPU问题排查实战演练,同学们反馈有收获,特将实战演练的试题和答案公 阅读全文
posted @ 2017-08-21 19:29 一天不进步,就是退步 阅读(356) 评论(0) 推荐(0)
摘要: 原文地址:http://www.cnblogs.com/liugh/p/6683488.html 一、文件准备 1.1 文件名称 telegraf-1.2.1_windows_amd64.zip influxdb-1.2.2_windows_amd64.zip grafana-4.2.0.windo 阅读全文
posted @ 2017-08-15 20:41 一天不进步,就是退步 阅读(552) 评论(0) 推荐(0)
摘要: 原文地址:https://dzone.com/articles/scalable-distributed-systems-using-akka-spring-boot-ddd-and-java When data that needs to be processed grows large and 阅读全文
posted @ 2017-08-14 12:37 一天不进步,就是退步 阅读(1382) 评论(0) 推荐(0)
摘要: 原文地址:http://www.jianshu.com/p/c3fc3129407d 1. 爬虫框架webmagic WebMagic是一个简单灵活的爬虫框架。基于WebMagic,你可以快速开发出一个高效、易维护的爬虫。 1.1 官网地址 官网文档写的比较清楚,建议大家直接阅读官方文档,也可以阅读 阅读全文
posted @ 2017-08-03 17:14 一天不进步,就是退步 阅读(1351) 评论(0) 推荐(0)
摘要: 1. application.properties 2. 配置类 2.1 datasource配置 2.2 主库配置 2.3 日志库配置 3. 使用 阅读全文
posted @ 2017-07-27 20:31 一天不进步,就是退步 阅读(762) 评论(1) 推荐(0)
摘要: Threads and Executors Welcome to the first part of my Java 8 Concurrency tutorial. This guide teaches you concurrent programming in Java 8 with easily 阅读全文
posted @ 2017-07-14 11:30 一天不进步,就是退步 阅读(553) 评论(0) 推荐(0)
摘要: 原文地址:http://www.blogs8.cn/posts/WWpt35l mybatis提供了注解方式编写sql,省去了配置并编写xml mapper文件的麻烦,今天遇到了获取自增长主键返回值的问题,发现相关问答比较少,还好最后还是圆满解决了,现把重点记录一下,解决问题的关键就是以下几行代码: 阅读全文
posted @ 2017-07-13 20:38 一天不进步,就是退步 阅读(662) 评论(0) 推荐(0)
摘要: 1.SUBSTRING 2.SUBSTRING_INDEX 3. right/left 4.POSITION sql实例 select left(right(SUBSTRING_INDEX(data_out,":",7),10),3) from check_post01 where day_onli 阅读全文
posted @ 2017-07-13 15:36 一天不进步,就是退步 阅读(248) 评论(0) 推荐(0)
摘要: 原文地址:http://www.baeldung.com/spring-async 1. Overview In this article, we’ll explore the asynchronous execution support in Spring – and the @Async ann 阅读全文
posted @ 2017-07-13 15:06 一天不进步,就是退步 阅读(519) 评论(0) 推荐(0)
上一页 1 ··· 90 91 92 93 94 95 96 97 98 ··· 234 下一页