第21天dao模型二(更为精简)之泛型的反射
1、使用带有泛型信息的类: a、两边都带有泛型的,一定要一致 ArrayListString list = new ArrayListString(); b、单边有泛型信息也是可以的 ArrayListString list = new ArrayList (); 新程序员调用老程序员的内容 ArrayList list = new ArrayListString();
1、使用带有泛型信息的类:
a、两边都带有泛型的,一定要一致
ArrayList
b、单边有泛型信息也是可以的
ArrayList
ArrayList list = new ArrayList
2、自定义泛型:
a、可以在定义类的后面就声明泛型,类中的实例方法就可以直接使用。
public class Demo1
//
public T findOne(Class
return null;
}
b、静态方法必须单独定义后才能使用。在返回值得前面定义
public static
}
c、可以同时生命多个泛型的定义
public static
return null;
}
3、使用带有泛型信息的类注意事项:
只有对象类型才能作为泛型方法的实际参数
dao接口不变。
主要是实现变了,不需要写那么多代码,在basedao中做了处理即对泛型进行了反射。
import java.io.Serializable; import java.lang.reflect.ParameterizedType; import java.lang.reflect.Type; import org.hibernate.Session; import com.itheima.dao.CustomerDao; import com.itheima.dao.Dao; import com.itheima.domain.Customer; //借助Hibernate public class BaseDaoimplements Dao { private Session session = null;//当做有了这个对象 private Class clazz;//从哪个表中操作 public BaseDao(){ //泛型的反射:目的,给成员变量clazz赋值,好让查询、删除知道从哪个表中操作 System.out.println(this.getClass().getName()); //this:就是哪个实实在在的对象 CustomerDao cDao = new CustomerDaoImpl(); CustoemrDaoImpl的实例 Type type = this.getClass().getGenericSuperclass();//获取带有泛型信息的父类 "BaseDao " Type是Class类的接口 ParameterizedType pType = (ParameterizedType)type; clazz = (Class) pType.getActualTypeArguments()[0]; } public void add(T t) { session.save(t); } public void update(T t) { session.update(t); } public void delete(Serializable id) { T t =findOne(id); session.delete(t); } public T findOne(Serializable id) { System.out.println(clazz.getName()); return (T) session.get(clazz, id); } }
package com.jxnu.dao.impl; import java.util.List; import com.itheima.dao.CustomerDao; import com.itheima.domain.Customer; public class CustomerDaoImpl extends BaseDaoimplements CustomerDao { // public CustomerDaoImpl(){ // super(); // } public List findRecords(int startIndex, int pageSize) { // TODO Auto-generated method stub return null; } }
package com.jxnu.dao.impl; import java.util.List; import com.itheima.dao.UserDao; import com.itheima.domain.User; public class UserDaoImpl extends BaseDaoimplements UserDao { @Override public List findAll() { // TODO Auto-generated method stub return null; } }
实现层减少了代码。
关键代码是:
private Class clazz;//从哪个表中操作
public BaseDao(){
//泛型的反射:目的,给成员变量clazz赋值,好让查询、删除知道从哪个表中操作
System.out.println(this.getClass().getName());
//this:就是哪个实实在在的对象 CustomerDao cDao = new CustomerDaoImpl(); CustoemrDaoImpl的实例
Type type = this.getClass().getGenericSuperclass();//获取带有泛型信息的父类 "BaseDao
ParameterizedType pType = (ParameterizedType)type;
clazz = (Class) pType.getActualTypeArguments()[0];
}