background picture of the home page

Hi,Friend

以技术为主流的博客系统

plumelog+redis+es(服务端配置)

plumelog+redis+es(服务端配置) 参考网址:FASTSTART.md · plume开源社区/Plumelog - Gitee.com 一:下载安装包,plumelog-server 下载地址:https://gitee.com/plumeorg/plumelog/releases

thumbnail of the cover of the post

nginx转发headers内容丢失解决办法

nginx转发headers内容丢失解决办法 问题 开发网关项目时,在请求时往请求头header中放入了签名sign_key信息,在接收请求时再从header中拿出,在本地调试时是可以的,但上线之后通过Nginx代理之后发现拿不到。 原因 nginx代理默认会把header中参数的 "" 下划线去

thumbnail of the cover of the post

MySQL 日期和时间戳的转换

MySQL 日期和时间戳的转换 一、MySQL 日期和时间戳的转换 1.日期转时间戳 -- 转十位 select UNIX_TIMESTAMP('2018-12-25 12:25:00'); 结果:1545711900-- 转十三位 SELECT REPLACE(unix_timestamp(cur

thumbnail of the cover of the post

Date常用方法

Date常用方法 对比 //之后 a.after(b); //a在b之后则true 否则false //之前 a.before(b); //a在b之前则true 否则false 获取时间信息 Calendar startDate = Calendar.getInstance();

thumbnail of the cover of the post

Set常用方法

Set常用方法 去重排序 public class Demos { public static void main(String[] args) { List<Student> students = new ArrayList<Student>(); stud

thumbnail of the cover of the post

List常用方法

List常用方法 排序 //正序 dayZAmplitudeVos.sort(Comparator.comparing(DayAmplitudeVo::getTm)); //倒叙 dayZAmplitudeVos.sort(Comparator.comparing(DayAmplitudeVo::

thumbnail of the cover of the post