请问使用springData的方式。怎么做通用DAO?泛型会报错。
不可能每个实体需要一个空的接口来继承CrudRepository吧?所以我想用泛型代替:
public class Dao extends CrudRepository<T,D exteds Serializable>
在Service层直接使用: Dao<User,Integer> dao;
但是这样,会报错,不知道老师有什么解决办法吗?
不可能每个实体需要一个空的接口来继承CrudRepository吧?所以我想用泛型代替:
public class Dao extends CrudRepository<T,D exteds Serializable>
在Service层直接使用: Dao<User,Integer> dao;
但是这样,会报错,不知道老师有什么解决办法吗?
2017-10-22
举报