This is
<property name="eclipselink.logging.level" value="FINEST"/>
that you must put in persistence.xml to get spammed in your console and
check, for example, that all your entities are recognized.
Oh, and prefer
Oh, and prefer
@Entity
@Table(name="a_name")
to
to
@Entity(name="a_name")
if you want to master the table name used.
Else this is your entity that is renamed and you'll get your queries wrong ;-)
if you want to master the table name used.
Else this is your entity that is renamed and you'll get your queries wrong ;-)