that is the default behavior. Hibernate is parsing attribute info from the getter/setter methods since you have declared @Id on the getId() method . is*() is considered a valid getter for boolean, thus the resulting DB column. you can mark the is*() method with @Transient and it will be ignored.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4087704#4087704 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4087704 _______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
