Is the @Transient field loaded?

I know that the value of the @Transient field is not stored in the database. But is the field value loaded from the table when the entity is created from the query? (Field exists in table)

@Transient @Column (name = "zipcode") Integer zipcode; 
+4
source share
1 answer

No, @Transient is completely ignored either during storage or when loading from the database

+2
source

Source: https://habr.com/ru/post/1490094/


All Articles