Hibernate annotations出错:org.hibernate.MappingException: Could not determine type for: Xxx.xxx.xxx.XXX类,。。。。。
找了半天,终于发现:原来注解的位置出了错误:
在属性及get方法上都定义了注解,结果hibernate默认只读属性上的注解,忽略get方法上的注解,所以特别是在一对多,一对一关系,多对多关系映射时,虽然在get方法上做了配置,但hibernate没有读取该注解,才报Could not determine type XXXx的错误。