Hello,
I have a persistent class which looks something like this:
@Entity public class Test { private String string; private Date date; @Transient private boolean test; // getters/setters }
When I persist the class the transient 'boolean test' is stored in the database, maybe I am doing it wrong but I expect
the 'boolean test' is not stored in the database because it's a (annotated) transient field?
Regards,
Will