Is there a way to tell JPA/Hibernate to transform column names from camcel case to _'s?
- by egervari
Is there a generic way to tell JPA/Hibernate to transform all column names of the form:
emailAddress
to the form:
email_address
?
I'd rather not have to use a @Column annotation for hundreds of columns. I hope someone thought of this ;)