Spring工具类-ClassPathResource的使用
简介
本文介绍Spring的ClassPathResource工具类的使用。ClassPathResource用于加载资源文件。
用法
Resource res = new ClassPathResource("xxx");
构造函数参数:路径名。可以...
Spring工具类-MultiValueMap的使用
简介
本文介绍Spring的MultiValueMap工具类的使用。
MultiValueMap:一个key对应多个value。
用法
package com.example.demo;
import org.junit.jupiter.api.Test;
import org...
Spring工具类-AnnotationUtils的使用
简介
本文介绍Spring的AnnotationUtils工具类的用法。
AnnotatedElementUtils与AnnotationUtils的区别见:这里
用法
注解类
package com.example.annotation;
import org....
Spring工具类-AnnotatedElementUtils的使用
简介
本文介绍Spring的AnnotatedElementUtils工具类的使用。
AnnotatedElementUtils与AnnotationUtils的区别
AnnotatedElementUtils比AnnotationUtils更强大
特性AnnotatedElem...
Spring工具类-Assert的使用
简介
说明
本文介绍Spring的Assert工具类的用法。
Assert工具类的作用:判断某个字段,比如:断定它不是null,如果是null,则此工具类会报错。
包位置
org/springframework/...
Spring-BeanUtils忽略空值拷贝
简介
说明
本文用示例介绍Spring(SpringBoot)如何使用BeanUtils拷贝对象属性(忽略空值)。
BeanUtils类所在的包
有两个包都提供了BeanUtils类:
Spring的(推荐):org....