Tagged Questions
The serializable tag has no wiki summary.
26
votes
5answers
3k views
Why does HttpServlet implement Serializable?
In my understanding of Servlet, the Servlet will be instantiated by the Container, his init() method will be called once, and the servlet will live like a singleton until the jvm is shut down.
i do ...
20
votes
5answers
8k views
Serializing private member data
I'm trying to serialize an object to XML that has a number of properties, some of which are readonly.
public Guid Id { get; private set; }
I have marked the class [Serializable] and I have ...
13
votes
4answers
6k views
What is the point of the ISerializable interface?
It seems like I can serialize classes that don't have that interface, so I am unclear on its purpose.
12
votes
2answers
331 views
Serializable, cloneable and memory use in Java
I am using an inner class that is a subclass of a HashMap. I have a String as the key and double[] as the values. I store about 200 doubles per double[]. I should be using around 700 MB to store ...
11
votes
1answer
7k views
Java Serializable Object to Byte Array
(im new to java)
from my searches for Serialization in Java most of the examples document writing to a file or reading from one.
my question is lets say i have a serializable class AppMessage.
I ...
11
votes
5answers
13k views
What does it mean: The serializable class does not declare a static final serialVersionUID field?
I have the warning message given in the title. I would like to understand and remove it. I found already some answers on this question but I do not understand these answers because of an overload with ...
11
votes
2answers
653 views
Does adding [Serializable] to the class have any performance implications?
I need to add the [Serializable] attribute to a class that is extremely performance sensitive.
Will this attribute have any performance implications on the operation of the class?
10
votes
2answers
215 views
Is serializable attribute needed in concrete C# class?
In C#, consider we have a generic class and a concrete class
[Serializable]
public class GenericUser
{ ...
[Serializable]
public class ConcreteUser : GenericUser
{ ...
is it necessary to mark ...
10
votes
1answer
3k views
using XmlArrayItem attribute without XmlArray on Serializable C# class
I want XML in the following format:
<configuration><!-- Only one configuration node -->
<logging>...</logging><!-- Only one logging node -->
...
10
votes
4answers
698 views
How can I add a type constraint to include anything serializable in a generic method?
My generic method needs to serialize the object passed to it, however just insisting that it implements ISerializable doesn't seem to work. For example, I have a struct returned from a web service ...
8
votes
4answers
534 views
Persist an object that is not marked as serializable
I need to persist an object that is not marked with the serializable attribute. The object is from a 3rd party library which I cannot change.
I need to store it in a persist place, like for example ...
7
votes
3answers
211 views
How java.io.Serializable is Memento pattern?
As we know the memento pattern is without violating encapsulation, capturing and externalize a object's internal state and can be reclaimed later without knowledge of the orginal state.
My question ...
7
votes
7answers
386 views
When does it make sense for a Java object to be Serializable but not Cloneable?
If a Java class implements the Serializable interface but does not have a public clone() method, it is usually possible to create a deep copy like this:
class CloneHelper {
...
7
votes
6answers
3k views
Who actually implements serializable methods?
I've been learning how to use Serializable.
I know if I create a class 'A' with different variables who implements Serializable and I add Serializable to my class, it's also Serializable.
But, who ...
6
votes
2answers
226 views
What is the difference beetwen scala @Serializable and Java Serializable?
the manner of action of scala @Serializable is different from Java Serializable?
I mean the way to serialize objects or both use the same standard serialization?
5
votes
1answer
31 views
Java Serialization readObject input vs readExternal input
The signature for readObject is:
private void readObject(java.io.ObjectInputStream in) throws IOException, ClassNotFoundException;
which takes in a reference of a concrete class type.
The ...
5
votes
1answer
291 views
Resharper doesn't automatically convert to auto properties in Serializable classes - should I?
I ran across this issue today and was able to determine that, when doing code cleanup, R# will not convert properties from having backing fields to auto properties in classes that are decorated with ...
5
votes
8answers
1k views
What is a serializable object?
What is a serializable object in C#?
I guess the word serializable is throwing me off more than "serializable object".
4
votes
2answers
117 views
C# Cloning- working with nonserializable data types
I've hit a bit of a stumbling block in my quest to implement object cloning in my game engine.
My goal is to have a cloning system that I don't have to maintain on a class by class basis, unless the ...
4
votes
2answers
111 views
Raise a Visual Studio warning when using an empty property setter
I need to make a class Serializable.
In this class I have a MyGuid readonly property, that I want to be serializable but not deserializable (property is initialized in a backing field).
Using base ...
4
votes
2answers
645 views
Does a serializable object always get serialized when put in a bundle?
We were wondering if when using Bundle with serializable or parcelable objects, when does the marshalling actually happen? As soon as you put it in the bundle? Since bundles are mostly used to simply ...
4
votes
2answers
276 views
Can you override the stream writers in scala @serializable objects?
I now understand that scala @serializable objects can be used the same as a Java Serializable object. In a Java Serializable object there are methods you can override to change how the object ...
4
votes
7answers
315 views
Why do you have to mark a class with the attribute [serializable]?
Seeing as you can convert any document to a byte array and save it to disk, and then rebuild the file to its original form (as long as you have meta data for its filename etc.).
Why do you have to ...
4
votes
2answers
197 views
Rename serializable class
If i Serializable the following code using XmlSerializer.
[XmlRoot("products")]
public class Products : List<Product>
{
}
public class Product
{
}
I get the following xml
...
4
votes
3answers
519 views
Why should I always make my Exceptions [serializable]? (.NET)
Referring to What is the correct way to make a custom .NET Exception serializable?
and Are all .NET Exceptions serializable? ...
Why should my exceptions be serializable?
Someone said "it can be ...
3
votes
1answer
76 views
Why is Serializable declared with fully qualified name in JDK classes?
I might be a bit pointless question, but while browsing sources of various JDK classes, I saw that when a class implemented the java.io.Serializable interface, it usually referred to it with a fully ...
3
votes
3answers
384 views
Why should I not make a class Serializable?
I'm storing some objects in my viewstate and I was wondering if are any negatives to making a class Serializable?
Is it bad practice to make all classes Serializable?
3
votes
3answers
182 views
Where is this non-serializable object?
I'm trying to serialize an object and the following SerializationException is thrown:
Type 'System.Linq.Enumerable+d__71`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, ...
3
votes
1answer
1k views
Is using Serializable in Android bad?
I've been reading a lot of posts and articles extolling the speed of Parcelable over Serializable. I've been using both for a while to pass data between Activities through Intents, and have yet to ...
3
votes
2answers
3k views
Why can't I use WCF DataContract and ISerializable on the same class?
I have a class that I need to be able to serialize to a SQLServer session variable and be available over a WCF Service. I have declared it as follows
namespace MyNM
{
[Serializable]
...
3
votes
4answers
1k views
Does Java Serialization work for cyclic references?
For example: Object A contains Object B that contains Object C that contains Object A.
Will Object A serialize properly?
Comment #9 here indicates that it does not work .
In contrast, XStream ...
3
votes
2answers
6k views
Python serializable objects json
class gpagelet:
"""
Holds 1) the pagelet xpath, which is a string
2) the list of pagelet shingles, list
"""
def __init__(self, parent):
if not isinstance( parent, ...
3
votes
2answers
1k views
When using ISerializable with DataContractSerializer, how do I stop the serializer from outputting type information?
To get more control over serialization, I have converted a class from [DataContract] to [Serializable], implementing both GetObjectData and the special deserializing constructor. When I do this, the ...
2
votes
1answer
18 views
Serialze class as single attribute-less element with its content set to one property
I want to serialize/deserialize the following types:
// The "NameEntity" element shouldn't appear in the XML
public class NameEntity
{
[XmlElement("name")]
public string Name { get; set; }
}
...
2
votes
2answers
61 views
PHP serializable working on localhost but not on webserver
I'm working on a web page where I have some data visualized in html tables. I want the user to be able to retriev the data as an Excel document and am using PHPExcel for this purpose. The data is ...
2
votes
4answers
108 views
Are Interned Strings preserved when serializing?
If I have large object graph that contains many duplicate strings, is there a benefit to intern()ing the strings before serializing them? Will this reduce the amount of data transferred? Will the ...
2
votes
4answers
153 views
and events (INotifyPropertyChanged, specifically)
I've run into a really strange problem I can't seem to reproduce with a small example. Sorry if this question is a little vague.
I have a Person which contains an Address. Both inherit from ...
2
votes
1answer
65 views
Serialization inheritence: Will an exception be thrown if the base class isn't marked [Serializable]?
Taking a practice exam the exam said I got this one wrong. The answer marked in Yellow is the supposed correct answer.
In the following quote, the part marked in bold I think is wrong: "The ...
2
votes
2answers
200 views
One connection in spring transaction?
I have few questions related to connections and spring transactions.
Does spring use the same connection instance when multiple methods performing DML & DDL operations are executed in a ...
2
votes
1answer
191 views
Groovy Expando Serializable
is there any way to serialize an expando subclass which can be retrieved with dynamically added properties. with the example;
class Sexpando extends Expando implements Serializable{
//String testProp
...
2
votes
1answer
340 views
Why is SerializableAttribute not included in the Silverlight version of FCL?
Why is SerializableAttribute not included in the Silverlight version of FCL?
And also, BinaryFormatter is not in there either.
I am not looking for an alternative solution, I am just curious about ...
2
votes
7answers
361 views
Java serialization library without need of no-arg constructors and implementation of Serializable
Is there is any way in java-world to serialize without need of no-arg constructors and implementation of Serializable?
2
votes
4answers
1k views
problem in sending serializable objects using ObjectInputStream
snippet from The Server code :
public void run() {
try {
// Create data input and output streams
ObjectInputStream inputFromClient = new ObjectInputStream(
...
2
votes
5answers
2k views
Do Hibernate table classes need to be Serializable?
I have inherited a Websphere Portal project that uses Hibernate 3.0 to connect to a SQL Server database.
There are about 130 Hibernate table classes in this project. They all implement Serializable. ...
2
votes
2answers
193 views
Serialize ComponentModel.Container?
Is it possible to serialize (binary) a System.ComponentModel.Container?
2
votes
4answers
1k views
Serializable and transient
To make class serializable we do the following:
class A implements Serializable {
transient Object a;
}
And why not:
serializable class A {
transient Object a;
}
Why if we want to make ...
2
votes
3answers
766 views
Will adding a method change the java-calculated serialVersionUid on my class?
If I have a class like this:
public class Name implements Serializable {
private final String firstName;
private final String lastName;
public Name(String firstName, String lastName) {
...
1
vote
1answer
70 views
python, dict: not json serializable
I have a dictitionary where the keys are strings, and values are list of MyObject objects.
If i execute
simplejson.dumps(dict)
it throws "MyObject not JSON serializable".
So how can i avoids this ...
1
vote
3answers
34 views
How to reference third-party library source code for client use in GWT
The GWT documentation states that all the source code for compilation to JavaScript on the client-side must be in a "sub-package" of the gwt.xml file. How does this work for when one references ...
1
vote
1answer
38 views
CDI constructor injection don't work with transient non-serializable dependencies
I like the constructor injection of CDI a lot but now I found a usecase where constructor injection apparently doesn't work as expected.
In my example I have two classes. Class "BeanA" has no ...