Json.NET反序列化到接口实现
我试图使用Json.NET来通过http请求序列化传输类。 这是一个共享一些常用类文件的客户端服务器测试程序。 这些文件是一个接口( ITestCase
)和这个接口的实现( TestPicture
, TestVideo
)。
在同一个应用程序中对下面的testCase
序列化和反序列化是可行的,大概是因为Json.NET代码都包含在一个程序集中。 当我连载testCase
,发送到服务器,然后尝试反序列化,我得到错误
"Error resolving type specified in JSON 'com.test.testcases.TestPicture, Graphics Tester'. Path '$type', line 2, position 61"
带有消息的JsonSerializationException类型的内部异常
"Could not load assembly 'Graphics Tester'."
在Json.NET文档中,生成Json时,$ type值为"$type": "Newtonsoft.Json.Samples.Stockholder, Newtonsoft.Json.Tests"
。 第二个参数似乎是通过命名空间引用相关的类,而不是通过项目名称(即Graphics Tester),因为它在我的实例中发生。
鉴于两个项目共享必需的类并且文件位于相同的命名空间中,为什么Json.NET正在寻找程序集而不是类本身?
下面是我的代码的骨架; 由于他们不协助解决问题,所以详细信息是被忽略的。 显示的是界面,以及该界面的两个实现。 还显示了序列化和反序列化操作,以及由此产生的Json。
ITestCase testCase = new TestPicture("test.jpg")
string json = JsonConvert.SerializeObject(testCase, Formatting.Indented, new JsonSerializerSettings
{
TypeNameHandling = TypeNameHandling.Objects,
});
ITestCase instance = JsonConvert.DeserializeObject<ITestCase>(json, new JsonSerializerSettings
{
TypeNameHandling = TypeNameHandling.Objects,
});
//value in variable json after serialisation
//{
// "$type": "com.test.testcases.TestPicture, Graphics Tester",
// "filename": "test.jpg",
// "testPoints": null
//}
个人课堂文件:
namespace com.test.testcases
{
interface ITestCase
{
void Run();
bool Verify();
}
}
namespace com.test.testcases
{
class TestPicture : ITestCase {}
}
namespace com.test.testcases
{
class TestVideo : ITestCase {}
}
我的解决方案
比我预期的更简单的解决方案。 这不是最佳的,但它确实有效。 我会更多地将它归类为解决方法或黑客。 通过更改项目属性并将程序集名称设置为在两个项目中相同,它将找到已包含在项目中的类,从而创建由Json字符串指定的对象。
$type
编码完全限定的类型名称,如果客户端和服务器不使用相同的项目来定义这些类型(即,如果每个类型都由自己定义类型而不是引用普通程序集),则它们在客户端和服务器之间会有所不同。
在你的情况下,在客户端中,完全限定的名称是com.test.testcases.TestPicture, Graphics Tester
,但是当它到达服务器时,服务器无法找到任何名为Graphics Tester
程序集。
您可以通过以下两种方式之一来解决此问题:
上一篇: Json.NET deserialise to interface implementation
下一篇: IAM policy for Amazon AWS to allow limited access to Route 53