Column without member
问题 Using Hibernate we're trying to have it create an additional column to an abstract class - but we can't add a new member to this class (memory consumption in large scale). We need to have Hibernate create the schema (development phase, hibernate.hbm2ddl.auto=update ). Let's say we have a MyClass entity class with members a,b,c , and we would like Hibernate to also create a column d . This column is not needed in memory and will be accessed only via HQL/SQL during saving/loading times of