1

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?

Mouna
  • 3,221
  • 3
  • 27
  • 38

1 Answers1

1

You need a custom ReverseEngineeringStrategy to achieve that.

Zsolt Süli
  • 216
  • 2
  • 7