在用spring-data-jpa 刚使用的时候,Tomcat启动报错
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>{
}