会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
沛昕的博客
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
2018年9月30日
使用 SimpleDateFormat 获取上个月的日期
摘要: SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy/MM"); Date date = new Date(); Calendar calendar = Calendar.getInstance(); calendar.setTime(date); // 设置为当前时间 calendar.set(Calendar.MONTH, cale...
阅读全文
posted @ 2018-09-30 10:08 沛昕的博客
阅读(735)
评论(0)
推荐(0)
编辑
2018年9月29日
使用 HttpClient 调用第三方接口
摘要: private static RequestConfig requestConfig = RequestConfig.custom().setSocketTimeout(60000).setConnectTimeout(60000).setConnectionRequestTimeout(60000).build();try { CloseableHttpClient httpCli...
阅读全文
posted @ 2018-09-29 16:30 沛昕的博客
阅读(585)
评论(0)
推荐(0)
编辑
2018年9月27日
Servlet 的生命周期及工作原理
摘要: Servlet 生命周期 过程:加载 --> 实例化 --> 服务 --> 销毁 init():在Servlet生命周期中,init()方法只执行一次,无论有多少客户端访问,都不会重复执行。它是在服务器装入Servlet时执行的,负载初始化Servlet对象。 service():当Servlet容
阅读全文
posted @ 2018-09-27 11:05 沛昕的博客
阅读(427)
评论(0)
推荐(0)
编辑
2018年9月18日
SpringBoot 框架简介及搭建
摘要: Spring Boot 简介 1. 什么是 SpringBoot 1.1 使用spring boot可以非常方便、快速搭建项目,不用考虑框架的兼容性或版本问题,集中式的配置,仅仅添加一个配置就可以了,所以使用sping boot非常适合构建微服务。 1.2 Spring Boot可以以jar包的形式
阅读全文
posted @ 2018-09-18 14:26 沛昕的博客
阅读(1177)
评论(1)
推荐(0)
编辑
2018年9月14日
SpringCloud 微服务简介及搭建(本文使用Spring封装后的API,实现负载均衡的功能)
摘要: Spring Cloud 微服务简介 1. 单体应用优化 1.1 可使用SOA面向服务架构(将每个模块分开,某个模块出问题了,不会影响其他模块) 1.2 如果某个服务于其他服务有调用关系,那么就需用到ESB(企业服务总线) 2. 微服务架构 2.1 将单体应用切分为小服务单元 3. Spring C
阅读全文
posted @ 2018-09-14 11:16 沛昕的博客
阅读(714)
评论(0)
推荐(1)
编辑
上一页
1
2