background picture of the home page

Hi, Friend

こんにちは、キンっす

Java 加密工具类

加密工具类 import org.apache.commons.codec.digest.DigestUtils; import java.util.Random; /** * @author MashiroT */ public class Encrypt { public sta

thumbnail of the cover of the post

SpringBoot 拦截器

SpringBoot 使用拦截器 引导类 继承 WebMvcConfigurer 接口,重写 addInterceptors 方法 @SpringBootApplication public class ClassScheduleApplication implements WebMvcConfig

thumbnail of the cover of the post

Jackson 反序列化 Map 集合

Jackson 反序列化 Map 集合 引言 仅仅使用 objectMapper.readValue(xxxxx, Map.class) 时,如果原始集合使用了泛型,idea会给出警告 未检查的赋值: 'java.util.Map' 赋值给 'java.util.Map<java.lang.Stri

thumbnail of the cover of the post

domain层、pojo层、Model层三者区别详解

共同点:其内部只存放JavaBean类 区别:各自的JavaBean类用途不同 domain层:它的JavaBean类,必须对应数据库中的数据。 pojo层:全称为(Plain Ordinary Java Object 普通Java对象) 存放普通的JavaBean类 Model层:它的JavaBe

thumbnail of the cover of the post

LinkedList 源码笔记

LinkedList 源码笔记 个人理解 LinkedList由双向链表实现,每个链表内装着指向下一链表节点的地址值,因此想要查找LinkedList中某一个节点的元素值,就需要从头开始判断元素值,不是则找下一地址,这使得增删改查中间元素所花费的代价过于大,而首尾的增删则较为简单,在原有节点上修改/

thumbnail of the cover of the post