Pergunta

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?

Foi útil?

Solução

You need a custom ReverseEngineeringStrategy to achieve that.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top