程序报错:org.hibernate.MappingException: Unknown entity常见问题(新手需注意)
原因1:import Entity类造成的(使用Eclipse自动提示导入的该包)
import javax.persistence.Id;
import javax.persistence.Table;
import javax.persistence.Transient;
import org.hibernate.annotations.Entity;//这是就出问题了哦
@Entity
@Table(name="test_person")
public class Person implements Serializable修改了引入的Entityimport javax.persistence.Id;
import javax.persistence.Table;
import javax.persistence.Transient;
import javax.persistence.Entity;//引入这个类就正确了
@Entity
@Table(name="test_person")
public class Person implements Serializable原因2: 可能是没有在cfg文件中加入 *.hbm.xml造成的
1万+

被折叠的 条评论
为什么被折叠?



