hibernate的一些常见的错误

No row with the given identifier exists 

表示你现在查询的对象所关联的对象有问题,一般是因为数据的问题(该对象所关联的对象找不到) 

Caused by: org.dom4j.DocumentException: Invalid byte 2 of 2-byte UTF-8 sequence. Nested exception: Invalid byte 2 of 2-byte UTF-8 sequence. 
如果出现这行错误说明你的xml配置文件有不规范的字符,检查下。 

net.sf.hibernate.MappingException: Error reading resource: hibernate/Hello_Bean.hbm.xml 
如果出现这行错误说明你的hibernate的XML配置文件有错 

net.sf.hibernate.MappingException: Resource: hibernate/Hello_Bean.hbm.xml not found 
如果出现这行错误说明hibernate的XML配置文件没有找到,你应该把XML文件放在与你的类文件同个目录下,本文中是放在hibernateclasseshibernate目录下,也就是跟Hello_Bean.class类文件一起。 

net.sf.hibernate.PropertyNotFoundException: Could not find a setter for property name in class hibernate.Hello_Bean 
如果出现这行错误说明你的xml文件里设置的字段名name的值与Hello_Bean.java类里的getXXX或setXXX方法不一致。 

net.sf.hibernate.HibernateException: JDBC Driver class not found: org.gjt.mm.mysql.Driver 
如果出现这行错误说明你的MYSQL驱动没有加进JB库里或者不在CLASSPATH里。

你可能感兴趣的:(Hibernate,xml,exception,byte,setter,nested)