John Donvan
John Donvan

Reputation: 566

Can't find "Reverse Engineering File" while creating the Hibernate Mapping Files and POJOs

I am using latest version of netbeans 8.0.2 to create a sample JSF+hibernate application. When I try to create the hibernate mapping files I can't find the reverse engineering file in the wizard Please check the image bellow.

enter image description here

Upvotes: 0

Views: 2783

Answers (2)

Segun Ajayi
Segun Ajayi

Reputation: 1

It is possible to have them both in the same package and you still have this error. You can try to right click on your project and go the properties. Go then to libraries and add database jar file e.g. ojdbc7.jar for oracle and jconn3.jar for sybase. It should work after this.

Upvotes: 0

Prem
Prem

Reputation: 4831

The reason is, your hibernate config file and reverse engineering file should be within the same package (folder structure) in the application. Try it.

Upvotes: 3

Related Questions