File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Beginning Java and the fly likes Serializable Interface Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Serializable Interface" Watch "Serializable Interface" New topic
Author

Serializable Interface

vidya Sreedharan
Greenhorn

Joined: Jun 27, 2007
Posts: 4
Hi,

Is it possible to persist an object to a database without implementing Serializable marker interface ?

Thanks,
Vidya
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35223
    
    7
"Persist" can be understood to mean many different things. APIs like JPA work with annotations to indicate how objects should be persisted to a DB.

Persisting a serialized binary version of an object is a fraught business that should be avoided. Slightly better (if using something like JPA is not an option) would be to use the java.beans.XMLEncoder/XMLDecoder classes (assuming that the objects follow JavaBean semantics).


Android appsImageJ pluginsJava web charts
Sagar Rohankar
Ranch Hand

Joined: Feb 19, 2008
Posts: 2896
    
    1

Ulf, are you suggesting that plain serialization of object is not good choice and you should look for other option like, XMLEncoder/Decoder ?


[LEARNING bLOG] | [Freelance Web Designer] | [and "Rohan" is part of my surname]
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35223
    
    7
Yes. There are valid uses for binary serialization, but storing objects in a DB is not one of them.
 
I agree. Here's the link: http://jrebel.com/download
 
subject: Serializable Interface
 
Similar Threads
RMI:at client side getting exceptrion like java.io.NotSerializableException
Serielizible?
I meet a problem. It is very interesting!!!!!!!!!!!!!!!!
Failed to marshal exception problem
Are collections Serializable Objects