Hello...
I write an application based on an already existing database (postgreSQL) using JPA and Hibernate. There is a int2-column (activeYN) in a table, which is used as a
boolean (0 = false (inactive), not 0 = true (active)). In the Java application i want to use this attribute as a
boolean. So i defined the attribute like this:
…