I thought when I have a class that I add the @Entity to it and also map it to a table, then when on a get property I add the @Column attribute and tell it what column of that table it should map it to… then I saw the @Transient annotation and it says if we add @Transient to a get, then Hibernate will Not save it to DB…so then I got confused: so does it mean default behaviour of Hibernate is to map every get to a similar named column in DB?
Share
@official hibernate documentation