Spring Remoting Serialization and De-serialization

折月煮酒 提交于 2019-12-08 03:31:14

问题


We have been using Spring Remoting in our project for sometime. It is used with some other systems to access our web-services. We are currently evolving in terms of what parameters web service takes; but at the same time we are trying to be independent of our consumers.

So, currently my question is around how serialization and deserialization works in spring remoting. Here are the details:

I have a web-service exposed through spring remoting which has following parameters in a class

  1. name
  2. age
  3. address

Currently all consumers use the respective stubs and serialization and deserialization happens accordingly.

As I mentioned we evolved our web service and class respectively to contain following fields now"

  1. name
  2. age
  3. address
  4. country
  5. dateOfBirth

However consumers still have old stubs or rather stub-jar to access the web service. We did a spike and it seems that irrespective of newly added fields at our ends the remoting service continues to work fine. I was expecting it to bomb at consumers' end since the number of fields have been added. "PLEASE NOTE NO FIELDS HAVE BEEN DELETED/REMOVED FROM CLASS". Only additions have been made.

Does spring remoting handles additional fields gracefully or I should expect it to crib?

Let me know if my question is not clear at any point. The ultimate question that I am trying to put forward is, should I be expecting my program to bomb? And it's not failing currently as I am not testing something correctly? How does spring remoting serialize and deserialize the objects that are being exchanged?


回答1:


Spring serialisation obeys the rules of Java serialisation.

Verify that change did indeed affect the serialVersionUID and that you're not providing one yourself, which has not changed.




回答2:


I thought Spring remoting was based on HTTP, not Java serialization. If that's the case, these are parameter name/value pairs, and as long as you haven't taken away parameters that existing clients expect it should continue to work.

Please check on this, skaffman. Your knowledge of Spring is excellent, and I'm on vacation right now. I'd be rude to stay longer on my friend's computer and research the topic. Sorry I can't be more helpful.



来源:https://stackoverflow.com/questions/1293188/spring-remoting-serialization-and-de-serialization

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!