🎨 更新fastjson 为 fastjson2

This commit is contained in:
fuhouyin 2023-05-10 10:16:57 +08:00
parent bfe9fccd90
commit 7a36df3d2c
3 changed files with 6 additions and 6 deletions

View File

@ -27,14 +27,14 @@
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>2.0.26</version>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2</artifactId>
<version>2.0.31</version>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>5.8.16</version>
<version>5.8.18</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>

View File

@ -1,6 +1,6 @@
package Feishu;
import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson2.JSONObject;
import org.springframework.web.client.RestTemplate;
import java.util.HashMap;

View File

@ -1,6 +1,6 @@
package wxMod;
import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson2.JSONObject;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;