Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

[BUG]反序列化List字段异常 #274

Closed
VirensCn opened this issue May 18, 2022 · 0 comments
Closed

[BUG]反序列化List字段异常 #274

VirensCn opened this issue May 18, 2022 · 0 comments
Labels
bug Something isn't working
Milestone

Comments

@VirensCn
Copy link

问题描述

简要描述您碰到的问题。

测试代码

public class TAset {
	private List<String> roleList;

	public List<String> getRoleList() {
		return roleList;
	}

	public void setRoleList(List<String> roleList) {
		this.roleList = roleList;
	}

	public static void main(String[] args) {
		String json = "{\"roleList\": [\"supermanage\"]}";

		JSONObject object = JSON.parseObject(json);

		TAset ss = object.toJavaObject(TAset.class);

		System.out.println(ss);
	}
}

异常信息:

Exception in thread "main" java.lang.UnsupportedOperationException
	at com.alibaba.fastjson2.reader.ObjectReader.createInstance(ObjectReader.java:37)
	at com.alibaba.fastjson2.JSONArray.toJavaObject(JSONArray.java:929)
	at com.alibaba.fastjson2.reader.ObjectReader.createInstance(ObjectReader.java:116)
	at com.alibaba.fastjson2.JSONObject.toJavaObject(JSONObject.java:1035)
	at cn.virens.javafx.test.TAset.main(TAset.java:24)

image

环境信息

请填写以下信息:

  • OS信息: [e.g.:CentOS 8.4.2105 4Core 3.10GHz 16 GB]
  • JDK信息: [e.g.:Openjdk 1.8.0_312]
  • 版本信息:[e.g.:Fastjson2 2.x.x]

重现步骤

如何操作可以重现该问题:

  1. 使用 xxx.xxx 方法
  2. 输入 ... 数据
  3. 出现 ... 错误
//可在此输入示例代码

期待的正确结果

对您期望发生的结果进行清晰简洁的描述。

相关日志输出

请复制并粘贴任何相关的日志输出。

附加信息

如果你还有其他需要提供的信息,可以在这里填写(可以提供截图、视频等)。

@VirensCn VirensCn added the bug Something isn't working label May 18, 2022
@wenshao wenshao added this to the 2.0.4 milestone May 18, 2022
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants