Spring工具包-util

Spring工具包常用工具类合集

Posted by guanyang on 2022-06-08
Words 270 and Reading Time 1 Minutes
Viewed Times

概览

  • 常用工具类定义,避免重复造轮子,提升效率
    • AES加密
    • 枚举定义
    • 数据加载,避免深度分页
    • 版本号比较
    • 图片过滤清洗,防止违规内容
    • 图片添加水印
    • IP/Cookie工具类
    • 常用正则合集
    • 参数校验注解,支持集合和枚举校验

使用指南

工程结构解读

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
├── README.md
├── pom.xml
├── src
│ ├── main
│ ├── java
│ └── org
│ └── gy
│ └── framework
│ └── util
│ ├── code //常用编码合集,例如AES加密
│ ├── data //数据加载,避免深度分页;版本号比较
│ ├── file //图片过滤清洗,防止违规内容;图片添加水印
│ ├── http //IP/Cookie工具类
│ ├── net //网络相关工具类
│ ├── regex //常用正则合集
│ ├── response //json/jsonp内容输出
│ └── validation //参数校验注解,支持集合和枚举校验

If you like this blog or find it useful for you, you are welcome to comment on it. You are also welcome to share this blog, so that more people can participate in it. If the images used in the blog infringe your copyright, please contact the author to delete them. Thank you !

...

...

00:00
00:00