具体上代码我的BaseDao:

public class BaseDao<T> {
  private Class clazz;
  private Properties pro=null;
  public BaseDao(){
   ParameterizedType pt=(ParameterizedType) this.getClass().getGenericSuperclass(); //按英译意思是获取这个类的泛型父类
   clazz=(Class) pt.getActualTypeArguments()[0];  //得到真实的类型内容
   pro=MainKey.getMainKeyType(clazz);  //静态方法获取的是每个实体类的类名(相当于数据库里的表明)和数据库里的主键自动增长列
  }
 
  //返回数据库连接
  private Connection getConnection() throws IOException{
    try {
  Properties pro=new Properties();
  pro.load(BaseDao.class.getClassLoader().getResourceAsStream("config.Properties"));   //我的连接数据库配置文件   
  Class.forName(pro.getProperty("driver"));
  return DriverManager.getConnection(pro.getProperty("url"), pro.getProperty("user"), pro.getProperty("pwd"));
 } catch (Exception e) {
  e.printStackTrace();
  return null;
 }
  }
  /**
   * 添加
   * @param t
   * 要保存的类
   * @return 成功返回true/失败返回false
   */
  public boolean save(T t){
  Connection con=null;
  try {
   con = getConnection();
  Field[] filds=clazz.getDeclaredFields();   //获取公开的字段包括私有
   StringBuffer sb=new StringBuffer();
   sb.append("INSERT INTO ["+t.getClass().getSimpleName()+ "](");
   for (Field field : filds) {
   if(field.getName().equals(pro.getProperty("idname"))){
    continue;
   }
   sb.append(field.getName()+",");
  }
   sb.deleteCharAt(sb.length()-1);
   sb.append(")VALUES(");
   List<Object> prams=new ArrayList<Object>();
   for (Field field : filds) {
   if(field.getName().equals(pro.getProperty("idname"))){
    continue;
   }
   PropertyDescriptor pd=new PropertyDescriptor(field.getName(),clazz);
   Method mt=pd.getReadMethod();
   Object obj=mt.invoke(t);
   prams.add(obj);
   sb.append("?,");
   }
   sb.deleteCharAt(sb.length()-1);
   sb.append(")");
   PreparedStatement ps=con.prepareStatement(sb.toString(),Statement.RETURN_GENERATED_KEYS);    //Statement.RETURN_GENERATED_KEYS可以获

//得自增列的id号
   for (int i = 0; i < prams.size(); i++) {
   ps.setObject(i+1,prams.get(i));
   }
   int count=ps.executeUpdate();
   ResultSet rs=ps.getGeneratedKeys();  //在这里可以把自增列的ID号读出来
   if(rs.next()){
    System.out.println("key:"+rs.getInt(1));
   }
   if(count>0){
    return true;
   }
 } catch (Exception e) {
  e.printStackTrace();
 }finally{
  try {
   con.close();
  } catch (SQLException e) {  
   e.printStackTrace();
  }
 }
 return false;
 
  
  }
  /**
   * 删除
   * @param ser 参数
   * @return 成功返回true/失败返回false
   */
  public boolean delete(Serializable ser){
  Connection con=null;
  try {
  con=getConnection();
  String sql="DELETE FROM"+pro.getProperty("tableName")+" where "+pro.getProperty("idname")+"=?";
     PreparedStatement ps=con.prepareStatement(sql);
     ps.setObject(1,ser);
     int count=ps.executeUpdate();
     if(count>0){
      return true;
     }
 } catch (Exception e) {
  e.printStackTrace();
 }finally{
    try {
  con.close();
 } catch (SQLException e) {
  e.printStackTrace();
 } 
 }
   return false;
  }
  /**
   * 更新
   * @param t要更新的类
   * @return 成功返回true/失败返回false
   */
 
  public boolean update(T t){
   Connection con=null;
   try {
   con=getConnection();
   StringBuffer sb=new StringBuffer();
   sb.append("UPDATE"+pro.getProperty("tableName")+"set");
   Field[] fields=clazz.getDeclaredFields();
   List<Object> prams=new ArrayList<Object>();
   for (Field field : fields) {
    if(pro.getProperty("idname").equals(field.getName())){
     continue;
    }
    sb.append(" "+field.getName()+"=?,");
    PropertyDescriptor pd=new PropertyDescriptor(field.getName(), clazz);
    Method mt=pd.getReadMethod();
    Object obj=mt.invoke(t);
    prams.add(obj);
   }
   sb.deleteCharAt(sb.length()-1);
   sb.append(" where "+pro.getProperty("idname")+"=?");
   PropertyDescriptor pd=new PropertyDescriptor(pro.getProperty("idname"), clazz);
   Method mt=pd.getReadMethod();
   Object obj=mt.invoke(t);
   prams.add(obj);
   PreparedStatement ps=con.prepareStatement(sb.toString());
   for (int i = 0; i < prams.size(); i++) {
    ps.setObject(i+1,prams.get(i));
   }
            int count=ps.executeUpdate();
            if(count>0){
             return true;
            }
  } catch (Exception e) {
   e.printStackTrace();
  }finally{
   try {
    con.close();
   } catch (SQLException e) {
    e.printStackTrace();
   }
  }
    return false;
  
  }
  /**
   * 查询所有
   * @return 实体类集合
   */
  public List<T> findAll(){
   Connection con=null;
   PreparedStatement ps=null;
   ResultSet rs=null;
   try {
  con=getConnection();
  String sql="select * from"+pro.getProperty("tableName");
  ps=con.prepareStatement(sql);
  rs=ps.executeQuery();
  List<T> list=new ArrayList<T>();
  while(rs.next()){
   T t=(T) clazz.newInstance();
   Map<String,Field> map=new HashMap<String, Field>();
   for (Field field : clazz.getDeclaredFields()) {
    map.put(field.getName(),field);
   }
   int count=rs.getMetaData().getColumnCount();//每行多少列
   for (int i = 0; i < count; i++) {
    try {
     Field field=map.get(rs.getMetaData().getColumnName(i+1).toLowerCase());
     field.setAccessible(true);
     if (field.getType().getName().equals(int.class.getName())|| field.getType().getName().equals(Integer.class.getName())) {
      field.set(t, Integer.valueOf(rs.getObject(i + 1).toString()));
     } else if (field.getType().getName().equals(Date.class.getName())) {
      field.set(t, new Date(rs.getDate(i + 1).getTime()));
     } else if (field.getType().getName().equals(Double.class.getName())|| field.getType().getName().equals(double.class.getName())) {
      field.set(t, rs.getDouble(i + 1));
     } else if (field.getType().getName().equals(
       String.class.getName())) {
      field.set(t, rs.getObject(i + 1).toString());
     } else {
      field.set(t, rs.getObject(i));
     }
    } catch (Exception e) {
     e.printStackTrace();
    }
   }
   list.add(t);
  }
  return list;
 } catch (Exception e) {
  e.printStackTrace();
 }finally{
    try {
     rs.close();
     ps.close();
     con.close();
 } catch (SQLException e) {
  e.printStackTrace();
 }
 }
 return null;
  }
  ****************************************************************************************************************************

每个实体类都配置了个Properties:用来存放每个实体类的类名(相当于数据库里的表明)和数据库里的主键自动增长列

tableName=[user]
MainKeyType=identity
idname=id

***********************************************

我的UserDao只要继承BaseDao就行:

public class UserDao extends BaseDao<User>

**********************************************

我的工具类用来返回  读取每个实体类的类名(相当于数据库里的表明)和数据库里的主键自动增长列的Properties:

public class MainKey {
  
   public static Properties getMainKeyType(Class clazz){
    Properties pro=new Properties();
    String path=clazz.getName().replace(".", "/")+".Properties";
    System.out.println(path);
    try {
  pro.load(MainKey.class.getClassLoader().getResourceAsStream(path));
 } catch (IOException e) {
  e.printStackTrace();
 }
   
 return pro;

*******************************************************

Main方法测试:

public static void main(String[] args) throws IOException {
  UserDao ud=new UserDao();
  User user=new User();
  user.setId(2);
  user.setAge(22);
  user.setName("sp");
  user.setPhone(138438);
  ud.save(user);
//        ud.update(user);
       // System.out.println(ud.delete(1));
       
  //MainKey.getMainKeyType(User.class);
 }
   
   }
}

通过反射封装JDBC的更多相关文章

  1. jdbc操作mysql(四):利用反射封装

    前言 有了前面利用注解拼接sql语句,下面来看一下利用反射获取类的属性和方法 不过好像有一个问题,数据库中的表名和字段中带有下划线该如何解决呢 实践操作 工具类:获取connection对象 publ ...

  2. MySQL数据库学习笔记(十一)----DAO设计模式实现数据库的增删改查(进一步封装JDBC工具类)

    [声明] 欢迎转载,但请保留文章原始出处→_→ 生命壹号:http://www.cnblogs.com/smyhvae/ 文章来源:http://www.cnblogs.com/smyhvae/p/4 ...

  3. MySQL数据库学习笔记(十)----JDBC事务处理、封装JDBC工具类

    [声明] 欢迎转载,但请保留文章原始出处→_→ 生命壹号:http://www.cnblogs.com/smyhvae/ 文章来源:http://www.cnblogs.com/smyhvae/p/4 ...

  4. JDBC学习笔记(5)——利用反射及JDBC元数据编写通用的查询方法

    JDBC元数据 1)DatabaseMetaData /** * 了解即可:DatabaseMetaData是描述数据库的元数据对象 * 可以由Connection得到 */ 具体的应用代码: @Te ...

  5. MySQL JDBC事务处理、封装JDBC工具类

    MySQL数据库学习笔记(十)----JDBC事务处理.封装JDBC工具类 一.JDBC事务处理: 我们已经知道,事务的概念即:所有的操作要么同时成功,要么同时失败.在MySQL中提供了Commit. ...

  6. DAO设计模式实现数据库的增删改查(进一步封装JDBC工具类)

    DAO设计模式实现数据库的增删改查(进一步封装JDBC工具类) 一.DAO模式简介 DAO即Data Access Object,数据访问接口.数据访问:故名思义就是与数据库打交道.夹在业务逻辑与数据 ...

  7. 【转】JDBC学习笔记(5)——利用反射及JDBC元数据编写通用的查询方法

    转自:http://www.cnblogs.com/ysw-go/ JDBC元数据 1)DatabaseMetaData /** * 了解即可:DatabaseMetaData是描述数据库的元数据对象 ...

  8. Java -- JDBC_利用反射及 JDBC 元数据编写通用的查询方法

    先利用 SQL 进行查询,得到结果集: 利用反射创建实体类的对象:创建对象: 获取结果集的列的别名: 再获取结果集的每一列的值, 结合 3 得到一个 Map,键:列的别名,值:列的值: 再利用反射为 ...

  9. 一、JDBC的概述 二、通过JDBC实现对数据的CRUD操作 三、封装JDBC访问数据的工具类 四、通过JDBC实现登陆和注册 五、防止SQL注入

    一.JDBC的概述###<1>概念 JDBC:java database connection ,java数据库连接技术 是java内部提供的一套操作数据库的接口(面向接口编程),实现对数 ...

随机推荐

  1. spring环境的搭建及作用和定义<一>

    问题?spring的定义及作用.spring的环境搭建 一.spring的定义及作用 1.spring由Rod Johnson创建的一个开源框架,它是为了解决企业应用开发的复杂性而创建的.框架的主要优 ...

  2. MvcPager分页控件的使用

    1.引入MvcPager.dll(MvcPager分页控件:http://www.webdiyer.com/mvcpager/) 2.后台C# Controller: //Ddemo使用Webdiye ...

  3. Java高级之内存模型分析

    博客出自:http://blog.csdn.net/liuxian13183,转载注明出处! All Rights Reserved ! 下文是博主感悟,请带着怀疑性的态度阅读! 需要了解基本变量所占 ...

  4. 在express项目中有效组织和使用mongoose

    平凡之路 1.创建express项目 express mongooseExpress 2.最简express var express = require("express"); v ...

  5. JDK中的URLConnection参数详解

    针对JDK中的URLConnection连接Servlet的问题,网上有虽然有所涉及,但是只是说明了某一个或几个问题,是以FAQ的方式来解决的,而且比较零散,现在对这个类的使用就本人在项目中的使用经验 ...

  6. Javascript正则表达式验证邮箱地址

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> < ...

  7. zero3- JPA http://www.cnblogs.com/holbrook/archive/2012/12/30/2839842.html

    1.很好的博客:http://www.cnblogs.com/holbrook/archive/2012/12/30/2839842.html 2. 最新的搬到github : http://holb ...

  8. Apache使用简介

    Apache使用简介 1.全局配置配置信 1) 配置持久连接 KeepAlive <On|Off>             #是否开启持久连接功能 MaxKeepAliveRequest ...

  9. mysql按条件查询当条件是数字的时候加不加引号是一样的。

    select * from user where id=1 select * from user where id="1" 在查询的注意是否需要加上"";

  10. XtraBackup2.3.3安装配置使用(innobakupex)

    通过使用percona公司的xtrabackup备份还原数据库,并完成搭建mysql主从数据库. 一.XtraBackup下载安装部分. 1.安装依赖软件. [root@localhost ~]# y ...