Skip to content
Advertisement

org.hibernate.hql.internal.ast.QuerySyntaxException: table is not mapped [from table]

I’m trying to learn to use Hibernate using MySQL, I’ve never worked with it before and after a chain of errors I finally get stucked with this:

JavaScript

I’ve tried with possible solutions of another questions, but nothing, it doesn’t work. This is what I’ve done so far:

hibernate.cfg.xml (Folder src)

JavaScript

country.hbm.xml (Folder *srcmainresourcesorghibernatetutorialhbm*)

JavaScript

country.java

JavaScript

Test.java

JavaScript

Edit 20130301

I’ve altered with yout suggestions several things

hibernate.cfg.xml

JavaScript

I renamed and moved the file Country.hbm.xml (It was country.hbm.xml) and changed this

JavaScript

The file was moved to srcorghibernatetutorialhbm

The class country.java was renamed to Country.java

And finally this line was modified in the Test.java

JavaScript

Now I’m getting this as an error

JavaScript

I appreciate your help. Thank you.

Advertisement

Answer

I finally solve the problem, after editing all of the things in the answer as I show there, I modified the Country.hbm.xml file to this: (Notice the commented line)

JavaScript

It has to be org.hibernate.tutorial.hbm.Country and not org.hibernate.tutorial.hbm.country

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement