I want to save my java object to postgresql column and i'm looking for a simple way to do so.
- what type for columns stores objects ?
- I heard about serialization but i'm kind of lost. How can i serialize/deserialize object ?
|
I want to save my java object to postgresql column and i'm looking for a simple way to do so.
|
||||
|
|
|
There's no specific column type. DB's like PostgreSQL doesn't understand Java. Serialization is indeed one of the ways. All you need to do is to let the class in question implement
Then you'll be able to write it to an
Needless to say that this is not the best practice. Rather map your object (javabean?) to a fullworthy table wherein each column represents a property of the object. E.g.
Which is then mapped against such a table:
That's much more clear and better maintainable, reuseable and automatable. |
|||
|
|