Hibernate: I want hibernate to automatically generate my tables with lowercase names.
For example, if my class is called com.myapp.domain.Customer, hibernate will generate a table called Customer. I want to be called a customer. I know that I can use the @Table annotation to specify the table name for each class. But I want this to happen "automatically."
source share