문제

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?

도움이 되었습니까?

해결책

You need a custom ReverseEngineeringStrategy to achieve that.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top