Java has the transientkeyword. Why does JPA have @Transient instead of simply using the already existing java keyword?
|
|
|||
|
|
|
Java's transient keyword is used to denote that a field is not to be serialized, whereas JPA's @Transient annotation is used to indicate that a field is not to be persisted in the database, i.e. their semantics are different. |
|||||||||||||
|
|
Because they have different meanings. The |
||||
|
|
|
As others have said,
When this class is fed to the JPA, it persists the |
||||