自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 资源 (3)
  • 收藏
  • 关注

原创 微信小程序消息订阅,发送模板消息

import cn.hutool.core.util.StrUtil; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import com.github.kevinsawicki.http.HttpRequest; import com.google.common.collect.Maps; import com.googl...

2020-10-15 16:04:55 423

原创 微信小程序消息提醒服务

import lombok.extern.slf4j.Slf4j; import org.apache.commons.lang3.concurrent.BasicThreadFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import org.springframework.util.CollectionUt...

2020-10-15 15:43:50 2401

原创 JAVA 按月分组,获取每月的天数

public static List<MonthsVO> getMonths(String start, String end){ List<DateVO> betweenDate = getBetweenDate(start, end); Map<String, List<DateVO>> map = betweenDate.stream().sorted((o1, o2) -> o2.getDateNum() - ..

2020-09-28 11:55:59 618

原创 mysql 删除表中重复记录,保留一条

DELETE FROM 表名 WHERE id NOT IN ( SELECT dt.minno FROM ( SELECT MIN(id) AS minno -- 表ID FROM 表名 GROUP BY month_id -- 分组字段 ) dt );

2019-06-27 16:41:34 109

原创 日期维度码表

创建日期维度表 CREATE TABLE `date_dimension` ( `date_id` int(8) NOT NULL COMMENT '日期ID', `date_format` varchar(20) DEFAULT NULL COMMENT '日期格式化', `curr_day` int(8) DEFAULT NULL COMMENT '当前星期几', `cu...

2019-06-24 10:52:21 758

原创 HTTP请求封装Java工具类

import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.InputStream; import java.io.InputStreamReader; import java.io.OutputStream; import java.io.OutputStreamWriter; import java...

2019-04-03 14:11:23 375

mybatis代码自动生成工具

代码自动生成工具 , 可用不用集成到开发工具中,通过一行cmd命令生成XML,BEAN,DAO代码。

2019-04-18

oracle11g x64 oci.dll

oracle library oci.dll could not be loaded ,64位的oci.dll instant client来支持PB调用

2017-11-23

管理系统标准接口设计文档

管理系统标准接口设计文档

2017-04-14

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除