`
mesum
  • 浏览: 31576 次
  • 性别: Icon_minigender_2
  • 来自: 杭州
文章分类
社区版块
存档分类
最新评论

模拟ibtais参数注入的过程

 
阅读更多

使用Ibatis时,只需要把sql语句写好,指明需要注入的参数对应对象中的属性就可以了。这样极大的提高了开发效率。

我在工作过程中,遇到了一些场景,需要自己去直接连接JDBC写数据库,我又想模拟Ibatis自动补全参数的功能,所以就写了下面的这些代码。欢迎指证批评。

 

创建数据库连接的代码

import java.sql.Connection;
import java.sql.DriverManager;

/**
 * 2012-8-9 tracy.liuy
 */
public class DbConnection {


    public Connection conn = null;

    public DbConnection(String driver, String url, String user, String password){
        try {
            // 注册驱动程序类
            Class.forName(driver);
            // 1、初始化连接对象
            conn = DriverManager.getConnection(url, user, password);
            // 2、设置连接对象的自动提交模式
            conn.setAutoCommit(false);
        } catch (Exception e) {
            throw new RuntimeException("get connect failed", e);
        }
    }
}
 

 

 

Customer对象

/**
 * 2012-8-15 tracy.liuy
 */
public class Customer {

    private Long   custId;
    private String name;

    public Long getCustId() {
        return custId;
    }

    public void setCustId(Long custId) {
        this.custId = custId;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

}
 

 

批量修改的代码

 

import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.List;



/**
 * 
 * 2012-8-15
 * tracy.liuy
 */
public class IBatis {

    /**
     * @param sql
     * @param campaignBdLogList 2012-8-1 tracy.liuy
     * @throws InvocationTargetException
     * @throws IllegalAccessException
     * @throws NoSuchMethodException
     * @throws IllegalArgumentException
     * @throws SecurityException
     */
    public int updateBatch(List objList) {
        
        DbConnection dbC = new DbConnection("com.mysql.jdbc.Driver", "address",  
                                            "username", "password");  

        PreparedStatement stmt = null;
        int rows = 0;

        if (objList != null && objList.size() != 0) {
            return rows;
        }
        //ibatis中的sql语句
        String sql = "update coustomer set name=#name# where custid = #custId#";
        
        //1.将 sql语句中 ## 及之间的内容替换成 ?,即  update coustomer set name=? where custid = ? 
        String prepareSql = placeSomeCharacter(sql);

        try {
            
            //2.创建连接
            stmt = dbC.conn.prepareStatement(prepareSql);
            for (Object obj : objList) {
                //3.补全参数(详细介绍看下面的代码)
                this.fillStatementBatch(stmt, sql, obj);
                rows += stmt.executeUpdate();
            }

        } catch (SQLException e) {
            throw new RuntimeException(sql + " update failed", e);

        } catch (Exception e) {
            throw new RuntimeException(sql + " update failed", e);
        }

        finally {
            close(stmt);
        }

        return rows;

    }

    /**
     * 使用正则表达式,替换需要注入的内容
     * @param sql
     * @return
     * 2012-8-2
     * tracy.liuy
     */
    private String placeSomeCharacter(String sql) {
       return sql.replaceAll("#.+?#", "?");
    }
    
    /**
     * 将对象中的属性根据sql语句中指定的一一替换PreparedStatement中的?号
     * @param stmt
     * @param obj 2012-8-1 tracy.liuy
     * @param obj2
     * @throws SQLException
     * @throws NoSuchMethodException
     * @throws SecurityException
     * @throws InvocationTargetException
     * @throws IllegalAccessException
     * @throws IllegalArgumentException
     */
    private void fillStatementBatch(PreparedStatement stmt, String sql, Object obj) throws SQLException,
                                                                                   SecurityException,
                                                                                   NoSuchMethodException,
                                                                                   IllegalArgumentException,
                                                                                   IllegalAccessException,
                                                                                   InvocationTargetException {
        char c = '#';
        int begin = 0;
        List<Integer> indexList = new ArrayList<Integer>();

        while (true) {
            int index = sql.indexOf(c, begin);
            if (index == -1) {
                break;
            }
            indexList.add(index);
            begin = index+1;
        }

        List<String> props = new ArrayList<String>();

        for (int i = 0; i < indexList.size(); i += 2) {
            props.add(sql.substring(indexList.get(i)+1, indexList.get(i + 1)));
        }
        int i = 1;
        for (String prop : props) {
            stmt.setObject(i++, getProperties(obj, prop));
        }

    }

    /**
     * @param obj
     * @param prop
     * @return 2012-8-1 tracy.liuy
     * @throws NoSuchMethodException
     * @throws SecurityException
     * @throws InvocationTargetException
     * @throws IllegalAccessException
     * @throws IllegalArgumentException
     */
    @SuppressWarnings({ "rawtypes", "unchecked" })
    private Object getProperties(Object obj, String prop) throws SecurityException, NoSuchMethodException,
                                                         IllegalArgumentException, IllegalAccessException,
                                                         InvocationTargetException {
        Method metd = null;
        Class clazz = obj.getClass();
        metd = clazz.getMethod("get" + change(prop), null);
        if (metd != null) {
            return metd.invoke(obj, null);
        }
        return null;
    }

    /**
     * @param src 源字符串
     * @return 字符串,将src的第一个字母转换为大写,src为空时返回null
     */
    public String change(String src) {
        if (src != null) {
            StringBuffer sb = new StringBuffer(src);
            sb.setCharAt(0, Character.toUpperCase(sb.charAt(0)));
            return sb.toString();
        } else {
            return null;
        }
    }
    

    /**
     * 关闭结果集
     * 
     * @param rs 结果集
     */
    protected void close(ResultSet rs) {
        if (rs != null) {
            try {
                rs.close();
            } catch (SQLException e) {
                throw new RuntimeException("rs close failed", e);
            }
        }
    }
    
    
    /**
     * 关闭语句对象
     * 
     * @param stmt 语句对象
     */
    protected void close(Statement stmt) {
        if (stmt != null) {
            try {
                stmt.close();
            } catch (SQLException e) {
                throw new RuntimeException("stmt close failed", e);
            }
        }
    }

}
分享到:
评论

相关推荐

    ibtais使用指南

    理解如何定义报表参数、筛选数据以及生成图表是分析业务表现的关键。 8. **安全性与权限**:确保数据安全是任何系统的重要方面。用户应学习如何设置用户角色、权限控制,防止未经授权的访问和操作。 9. **故障排查...

    基于Eclipse开发集成Spring mvc 3.0+ Ibtais 注解

    本来刚开始学Spring mvc 3.0+ Ibtais 基于Eclipse开发集成Spring mvc 3.0+ Ibtais 注解 求高手指导QQ286596209

    struts+spring+Hibernate+iBtais配置模板

    Spring 是一个全面的后端应用框架,提供了依赖注入(DI)、面向切面编程(AOP)、数据访问、事务管理等核心功能。Spring MVC是Spring中的Web层组件,与Struts类似,也实现了MVC模式,但更加强调松耦合和可测试性。...

    ibatis 资料

    3. **参数映射**:通过`&lt;parameterMap&gt;`标签,iBatis可以自动处理Java对象到SQL参数的映射,减少了手动设置参数的工作。 4. **结果集映射**:使用`&lt;resultMap&gt;`标签,iBatis能自动将查询结果映射到Java对象,支持一...

    ibatis简介 主要介绍了ibatis的作用和使用环境

    该框架主要用于简化Java应用程序中的数据库操作过程。ibatis的核心设计理念在于提供一种简单而灵活的方式来处理SQL语句和结果集映射,它不仅支持传统的数据访问对象(DAO)模式,还提供了一种基于SQL映射的方式来...

    最好的ibatis教程实例(内有注释)

    4. **参数映射与结果集映射**:Ibatis提供了强大的参数映射机制,如#{}和${}的区别,以及如何使用Map、POJO、自定义VO等方式传递参数。同时,它还支持自动映射结果集,也可以自定义映射规则。 5. **缓存机制**:...

    ibatis实战之一对多关联(源代码)

    在IT领域,特别是Java开发中,iBatis是一个非常受欢迎的...以上是关于iBatis一对多关联映射的实战介绍,希望对您在开发过程中有所帮助。更多关于iBatis的高级用法和最佳实践,可以通过文章链接中的资源进行深入学习。

    java Ibatis文档

    这是一个java中持久层框架,易懂易学,适合java初学者学习。

Global site tag (gtag.js) - Google Analytics