tio-utils
tio-utils 是 tio-boot 的内置工具类库
- 无默认任何第三方依赖
- 自带 JsonUtils,实现了实体类转为 Json 字符串
- 如果需要将 Json 字符串转为实体类,请添加 fastjson2
<dependency>
<groupId>nexus.io</groupId>
<artifactId>tio-utils</artifactId>
<version>2.1.0</version>
</dependency>
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2</artifactId>
<version>2.0.51</version>
</dependency>
gradle
implementation 'nexus.io:tio-utils:3.7.3.v20260201-RELEASE'
implementation 'com.alibaba.fastjson2:fastjson2:2.0.51'
