zoukankan      html  css  js  c++  java
  • Reprint: Serialization

    Having just recently ran into some major serialization issues I’m going to list some of the errors and pitfalls that I ran into.

    Some of the errors encountered

    Error one
    “<ClassName> is inaccessible due to its protection level. Only public types can be processed.”

    It means that the Class you are trying to serialize is not marked as public and hence the serializor can not access it. Depending on the Class scope this may not be a problem e.g. the serialization code and the class are both in the same scope.

    Error Two
    “Cannot serialize member <Property Name> of type <Type> because it is an interface.”

    It means that one of the members in your class is defined as an interface. An interface can never be serialized since the serializor will not know which instance of the interface to use.

    Error Three
    The type <Type> was not expected. Use the XmlInclude or SoapInclude attribute to specify types that are not known statically.

    This error is caused when trying to serialize an inherited class

    E.g. the following example will cause this problem

    1. public class Test  
    2. {  
    3.   private string _Field = "";  
    4.   public string Field  
    5.   {  
    6.     get { return _Field; }  
    7.     set { _Field = value; }  
    8.   }  
    9. }  
    10.   
    11. public class TestInherited : Test  
    12. {  
    13. }  
    14.   
    15. public class Container  
    16. {  
    17.   private Test ivField;  
    18.   public Test Field  
    19.   {  
    20.     get { return _Field; }  
    21.     set { _Field = value; }  
    22.   }  
    23. }  
    24.   
    25. Container _Test = new Container();  
    26. _Test.Field = new TestInherited();  

    The issue is that the Container.Field is defined as Test but instantiated as TestInherited. Their are two solutions for this problem
    1) Add the attribute [XmlInclude(typeof(TestInherited))] to the Test class
    2) new XmlSerializer(typeof(Container), new Type[] { typeof(TestInherited) });

    The second method is preferred. With the first method you have to decorate your base classes to which you may not always have access to, secondly the base class should not be aware of any class that inherits from it.

    Note:特别的,当一个对象中的属性为基类或者object类型时,他的依赖注入的类型(即运行时类型)必须明确使用 XmlInclude属性标明序列化的类型,否则序列化会出错。

    转载自 http://www.johnsoer.com/blog/?p=125

  • 相关阅读:
    spring简介
    Thinkphp5 的sesssion在同一个控制器不同的方法无法获取session的原因和对策
    PHP单例模式--典型的三私一公
    10+ 值得收藏的开源后台模板
    PHP中&&与and、||与or的区别
    iview weapp输入组件input事件顺序
    php 获取post方法payload(json)形式参数的方法
    Git pull(拉取),push(上传)命令整理(详细)
    小程序 子组件传值
    php display_errors
  • 原文地址:https://www.cnblogs.com/anthonyBlog/p/4346319.html
Copyright © 2011-2022 走看看