自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(18)
  • 收藏
  • 关注

原创 EasyExcel导入

3、监听器,处理具体数据导入业务。1、controller层。

2024-05-22 16:42:19 200 1

原创 大陆、香港、台湾身份证号码真实性校验

【代码】大陆、香港、台湾身份证号码真实性校验。

2024-05-02 15:39:32 472 1

原创 MySQL面试题

null值会占用更多的字节,并且null有很多坑的。

2024-03-04 15:16:23 603 1

原创 异步执行耗时程序

为了提升用户使用体验,先返回结果,再异步执行耗时的程序。

2024-02-26 17:25:47 141 1

原创 CompletableFuture四种执行关系

CompletableFuture四种执行关系

2024-02-26 16:32:39 292 1

原创 多排序字段查询

【代码】多排序字段查询。

2023-12-23 13:31:41 154 1

原创 java启动项目时端口号被占用,杀死端口号命令

端口占用杀死进程

2022-09-08 15:39:52 1041 1

原创 EasyExcel多table导出

EasyExcel多table导出

2022-07-21 20:04:36 999 1

原创 EasyExcel自定义表头

EasyExcel自定义表头

2022-07-21 19:41:54 9275

原创 调用第三方接口,POST表单提交

package com.itmoll.yinlianpay.until;import org.apache.http.HttpEntity;import org.apache.http.NameValuePair;import org.apache.http.client.config.RequestConfig;import org.apache.http.client.entity.UrlEncodedFormEntity;import org.apache.http.client.meth

2020-12-25 15:07:29 636

原创 SHA-256加密

package com.itmoll.yinlianpay.until;import java.io.UnsupportedEncodingException;import java.security.MessageDigest;import java.security.NoSuchAlgorithmException;/** * SHA256加密 * */public class SHA256Util { public static final String KEY_ALGO

2020-12-25 10:33:54 474

原创 3DES加密解密

package com.itmoll.yinlianpay.until;import javax.crypto.Cipher;import javax.crypto.SecretKey;import javax.crypto.spec.SecretKeySpec;/** * 3DES加密解密方式 * */public class DESedeUtil { private static final String KEY_ALGORITHM = "DESede";//定义 加密算法

2020-12-25 10:32:01 549

原创 DateUntil工具类

package com.cg.common.core.utils;import java.text.ParseException;import java.text.SimpleDateFormat;import java.util.Calendar;import java.util.Date;/** * 时间工具类 */public class DateUtils extends org.apache.commons.lang3.time.DateUtils { /**

2020-10-16 15:33:52 388

原创 IDEA常用插件

IDEA常用插件

2020-03-21 13:57:00 162

原创 Calendar类

Calendar类Calendar calendar =new GregorianCalendar();1、获取当前年calendar.get(Calendar.YEAR)2、获取当前月(calendar月份从0开始)calendar.get(Calendar.MONTH)+13、获取当前日calendar.get(Calendar.DATE)或calendar.get(Cal...

2020-03-17 10:06:51 167

原创 CollectionUtils工具类

CollectionUtils工具类package org.apache.commons.collections;List<String> list1 = new ArrayList(); list1.add("1111"); list1.add("2222"); list1.add("3333"); List&lt...

2020-03-03 13:27:08 3329 1

原创 集合对象的拷贝

集合对象的拷贝import com.alibaba.fastjson.JSON;List<OrderListVO> orderListVOList = JSON.parseArray(JSON.toJSONString(orderList), OrderListVO.class);相当于List<OrderListVO> orderListVOList = Lis...

2020-03-03 13:14:22 605

原创 @ApiModelProperty用法

@ApiModelProperty用法1、value() 此属性的简要说明。2、name() 允许覆盖属性的名称。3、allowableValues() 限制此参数的可接受值。列如:@ApiModelProperty(value = "状态,0:禁用、1:启用", dataType = "Integer", allowableValues = "0,1")4、dataType(...

2020-03-03 10:59:36 6834

空空如也

空空如也

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

TA关注的人

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