hibernate 出現 org.hibernate.MappingException: entity class not found 的解決辦法

在Hibernate 5.0版本以上時,出現異常

org.hibernate.MappingException: entity class not found:

如果確認配置和代碼都無誤的情況下,可嘗試增加一行代碼解決:


Configuration configuration = new Configuration().configure();

//增加下行代碼

configuration.addClass(News.class);




發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章