在用spring-data-jpa 刚使用的时候,springboot启动报错
Caused by: java.lang.IllegalArgumentException: Not an managed type: class java.lang.Object
仔细检查,发现
@Repository
public interface DeptDao extends JpaRepository{
}
JpaRepository后边缺少指定类型
正确的应该是
@Repository
public interface DeptDao extends JpaRepository<Dept,Long>{
}
原文链接:https://blog.csdn.net/location_bai/article/details/78814491
网友评论