摘要: 身份证验证相关公共方法 package com.iktapp.api.utils; import com.iktapp.api.constants.BusinessConstants; import org.apache.logging.log4j.util.Strings; import java 阅读全文
posted @ 2023-02-02 15:49 xingmeng1 阅读(96) 评论(0) 推荐(0)
摘要: 如何只获取最近60天的信息 1、localDate转化date /** * localDate转化为date * @param localDate * @return */ public static Date localDate2Date(LocalDate localDate) { return 阅读全文
posted @ 2023-01-13 18:43 xingmeng1 阅读(53) 评论(0) 推荐(0)
摘要: 避免重复提交注解 ①注解 @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface AvoidRepeatableCommit { /** * 指定时间内不可重复提交,单位毫秒 * @retur 阅读全文
posted @ 2023-01-12 11:08 xingmeng1 阅读(106) 评论(0) 推荐(0)
摘要: List<String> lshList = all.parallelStream().map(Jigou::getLsh).collect(Collectors.toList()); List<Jigou> toAddJigous = allJigou.stream().filter(p -> ! 阅读全文
posted @ 2022-11-25 16:05 xingmeng1 阅读(81) 评论(0) 推荐(0)
摘要: JSON字符串需Aes加密,加密为Hex 前端加密 后端加密 package com.iktapp.api.utils; import org.apache.commons.codec.DecoderException; import org.apache.commons.codec.binary. 阅读全文
posted @ 2022-11-24 15:55 xingmeng1 阅读(1000) 评论(0) 推荐(0)
摘要: list变成String类型 CollectionUtils.isEmpty(vo.getImgs())?"" : String.join(";", (String[]) vo.getImgs().toArray(new String[0])) String 类型 变成 list Arrays.as 阅读全文
posted @ 2022-11-24 15:29 xingmeng1 阅读(26) 评论(0) 推荐(0)
摘要: 第一种方式 HttpHeaders httpHeaders = new HttpHeaders(); httpHeaders.add("Authorization", "Bearer " + getToken()); SimpleClientHttpRequestFactory requestFac 阅读全文
posted @ 2022-11-18 20:21 xingmeng1 阅读(678) 评论(0) 推荐(0)
摘要: Mysql去重获取最新的一条数据 select * from yjzt_kindergartens r where id in (select max(id) from yjzt_kindergartens group by name) 阅读全文
posted @ 2022-11-17 14:43 xingmeng1 阅读(1557) 评论(0) 推荐(0)
摘要: java 三级菜单遍历 @Override public List<YjztCity> getYjzt(){ List<YjztCity> yjztCities = yjztCityMapper.selectByExample(null); //先获取你想要在哪些菜单范围内搜索 List<YjztC 阅读全文
posted @ 2022-11-14 19:49 xingmeng1 阅读(387) 评论(0) 推荐(0)
摘要: Spring Security 自定义认证逻辑 这篇文章的内容基于对Spring Security 认证流程的理解,如果你不了解,可以读一下这篇文章:Spring Security 认证流程 。 分析问题 以下是 Spring Security 内置的用户名/密码认证的流程图,我们可以从这里入手: 阅读全文
posted @ 2022-10-31 15:09 xingmeng1 阅读(810) 评论(0) 推荐(0)