Top "Serialization" questions

Serialization is the process by which data-structures are converted into a format that can be easily stored or transmitted and subsequently reconstructed.

laravel Unable to prepare route ... for serialization. Uses Closure

When I clear caches in my Laravel 5.2 project, I see this error message: [LogicException] Unable to prepare route [panel] for …

laravel serialization routes
What is the difference between Serialization and Marshaling?

I know that in terms of several distributed techniques (such as RPC), the term "Marshaling" is used but don't understand …

serialization terminology marshalling rpc
How to serialize a JObject without the formatting?

I have a JObject (I'm using Json.Net) that I constructed with LINQ to JSON (also provided by the same …

json serialization json.net
How do I copy a hash in Ruby?

I'll admit that I'm a bit of a ruby newbie (writing rake scripts, now). In most languages, copy constructors are …

ruby serialization hashmap copy deep-copy
Jackson JSON custom serialization for certain fields

Is there a way using Jackson JSON Processor to do custom field level serialization? For example, I'd like to have …

java json serialization jackson
java.io.InvalidClassException: local class incompatible:

I created client and server and then added a class in client side for serializing purposes, then simply just went …

java serialization client-server deserialization
JSONResult to String

I have a JsonResult that is working fine, and returning JSON from some POCO's. I want to save the JSON …

c# json asp.net-mvc-2 serialization
$(this).serialize() -- How to add a value?

currently I have the following: $.ajax({ type: 'POST', url: this.action, data: $(this).serialize(), }); This works fine, however I would …

serialization jquery
Entity framework self referencing loop detected

I have a strange error. I'm experimenting with a .NET 4.5 Web API, Entity Framework and MS SQL Server. I've already …

c# serialization entity-framework-4 asp.net-web-api
Why when a constructor is annotated with @JsonCreator, its arguments must be annotated with @JsonProperty?

In Jackson, when you annotate a constructor with @JsonCreator, you must annotate its arguments with @JsonProperty. So this constructor public …

java json serialization jackson