Version: fastjson-version 1.2.62
- When converting to an object collection, you cannot use a strong rotation method, such as:
List<User> UserList = (List<User>)JSON.parseObject(keyJSON, User.class);
- This will cause the error shown in the title
Solution
List<User> UserList = JSON.parseObject(keyJSON, new TypeReference<List<User>>(){});