Question

I use eclipse hibernate tools to generate classes from database tables. But I get classes names different from those of my database. For example I have a table that I call OT_XML in my database and the generated java class is called OtXml.

I have a lot of columns in each table ( around 50 columns) so I can't specify by hand the name needed for each column.

Is there a way to tell hibernate tools to respect the same names of tables and attributes?

Was it helpful?

Solution

You need a custom ReverseEngineeringStrategy to achieve that.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top