hj819748949 opened a new issue #2598: 继承集合对象的序列化
URL: https://github.com/apache/incubator-dubbo/issues/2598
 
 
   例如对象时
   public class DataSet extends ArrayList<String>
   {
        private static final long serialVersionUID = 5964152976750707429L;
        
        private String tag;
        
        public DataSet()
        {
        }
        public DataSet(String tag)
        {
                super();
                this.tag = tag;
        }
        public String getTag()
        {
                return tag;
        }
        public void setTag(String tag)
        {
                this.tag = tag;
        }
   }
   
   这种情况下, hession2,以及fastjson时,tag值无法进行序列化的
   
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to