自定义mybatis工具类

Config类

public class Config {

    /**
     * 解析xml,读取配置文件的内容,补全SqlSession所必须的信息
     * @param session
     */
    public static void loadConfiguration(DefaultSqlSession session, InputStream config) {
        try {
            //1.根据配置流对象构建Document
            Document document = new SAXReader().read(config);
            //2.获取根节点
            Element root = document.getRootElement();
            //3.使用XPATH得到所有的property节点
            List<Element> propElements = root.selectNodes("//dataSource/property");
            //4.遍历elements取出每个节点的属性,给创建数据库的信息赋值
            for(Element propElement : propElements) {
                //取出name属性的值
                String name = propElement.attributeValue("name");
                //取出value属性的值
                String value = propElement.attributeValue("value");
                //判断name是driver, url,username,password
                if("driver".equals(name)) {
                    driver = value;
                }
                if("url".equals(name)) {
                    url = value;
                }
                if("username".equals(name)) {
                    username = value;
                }
                if("password".equals(name)) {
                    password = value;
                }
            }
            //5.判断是否使用数据源
            Node dataSourceNode = root.selectSingleNode("//environment/dataSource");
            String useDataSource = dataSourceNode.valueOf("@type");
            if("POOLED".equalsIgnoreCase(useDataSource)) {
                //使用数据源
                DataSource ds = createDataSource();
                //给SqlSession中的连接数据库信息赋值
                session.setDataSource(ds);
            }else if("UNPOOLED".equalsIgnoreCase(useDataSource)){
                //不使用
                Connection conn = createConnection();
                //给SqlSession中的连接数据库信息赋值
                session.setConnection(conn);
            }
            //6.得到所有的mapper节点
            List<Element> mapperElements = root.selectNodes("//mappers/mapper");
            //7.遍历mapper的节点集合
            for(Element mapperElement : mapperElements) {
                //取出mapper节点的属性
                Attribute resource = mapperElement.attribute("resource");
                if(resource != null) {
                    //使用的是xml的配置方式
                    //取出resource属性的值
                    String mapperPath = resource.getValue();//com/itheima/dao/IUserDao.xml
                    //map
                    Map<String,Mapper> mappers = loadXMLMapperConfig(mapperPath);
                    session.setMappers(mappers);
                }else {
                    //使用注解的方式
                    //取出class属性的值
                    String daoClassPath = mapperElement.attributeValue("class");
                    Map<String,Mapper> mappers = loadAnnotationMapperConfig(daoClassPath);
                    session.setMappers(mappers);
                }
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }


    /**
     * 解析映射配置文件(例如:IUserDao.xml),准备sqlSession所必须的映射信息
     * @param mapperPath    参数就是:com/itheima/dao/IUserDao.xml
     * @return
     * @throws Exception
     */
    public static Map<String, Mapper> loadXMLMapperConfig(String mapperPath) throws Exception {
        Map<String,Mapper> map = new HashMap<String,Mapper>();
        InputStream in = null;
        try {
            //1.根据传入的参数
            in = Resources.getResourceAsStream(mapperPath);
            //2.获取Document对象
            Document document = new SAXReader().read(in);
            //3.获取根节点
            Element root = document.getRootElement();
            //4.取出节点中namespace属性的值
            String namespace = root.attributeValue("namespace");
            //5.取出所有的select节点
            List<Element> selectElements = root.elements("select");
            //6.遍历select节点集合
            for(Element selectElement : selectElements) {
                //取出id属性的值
                String id = selectElement.attributeValue("id");
                //取出resultType属性的值
                String resultType = selectElement.attributeValue("resultType");
                //取出文本内容
                String sql = selectElement.getText();
                //创建Mapper对象
                Mapper mapper = new Mapper();
                mapper.setQueryString(sql);
                mapper.setResultType(resultType);
                //拼接key
                String key = namespace+"."+id;
                //把key和mapper存入map中
                map.put(key, mapper);
            }
            return map;
        }finally {
            in.close();
        }
    }

















//此处是注解的加载方式

   public static Map<String, Mapper> loadAnnotationMapperConfig(String daoClassPath) {
//        Map<String,Mapper> map = new HashMap<String,Mapper>();
//
//        //1.根据传入的参数,反射获取当前类的字节码
//        Class daoClass = null;
//        try {
//            daoClass = Class.forName(daoClassPath);
//        } catch (ClassNotFoundException e) {
//            e.printStackTrace();
//        }
//        String className = daoClass.getName();
//        //2.得到类中所有的方法
//        Method[] ms = daoClass.getMethods();
//        //3.遍历方法的数组
//        for(Method method : ms) {
//            //判断每个方法上是否有Select注解
//            boolean isAnnotated = method.isAnnotationPresent(Select.class);
//            if(isAnnotated) {//一旦进入if内部,则表示当前方法有Select注解
//                //创建Mapper对象
//                Mapper mapper = new Mapper();
//
//                //获取方法的名称
//                String methodName = method.getName();
//                //获取当前方法的返回值
//                Type type = method.getGenericReturnType();//List<User>
//                //看看type是不是参数化的类型
//                if(type instanceof ParameterizedType) {
//                    //强转:因为我要到ParameterizedType里面的方法了
//                    ParameterizedType ptype = (ParameterizedType)type;
//                    //获取参数化类型中的实际类型参数
//                    Type[] types = ptype.getActualTypeArguments();
//                    //取出数组中的第一个元素
//                    Class domainClass = (Class)types[0];
//                    //给mapper中的resultType属性赋值
//                    mapper.setResultType(domainClass.getName());
//                }
//                //得到当前方法上的注解
//                Select selectAnno = method.getAnnotation(Select.class);
//                //获取注解的属性
//                String sql = selectAnno.value();//只是mapper中的一个属性
//                //给mapper中的querystring属性赋值
//                mapper.setQueryString(sql);
//                //创建map中的key
//                String key = className+"."+methodName;
//                //给map填充内容
//                map.put(key, mapper);
//            }
//        }
//        return map;
        return  null;
    }



    //连接数据库的信息
    private static String driver;
    private static String url;
    private static String username;
    private static String password;

    /**
     * 获取连接
     * @return
     * @throws Exception
     */
    public static Connection createConnection()throws Exception {
        Class.forName(driver);
        Connection conn = DriverManager.getConnection(url, username, password);
        return conn;
    }

    /**
     * 获取数据源
     * @return
     * @throws Exception
     */
    public static DataSource createDataSource() throws Exception{
        ComboPooledDataSource ds = new ComboPooledDataSource();
        ds.setDriverClass(driver);
        ds.setJdbcUrl(url);
        ds.setUser(username);
        ds.setPassword(password);
        return ds;
    }
}

Executor类

public class Executor {
    public static  <E> List<E> handle(ResultSet rs, String resultType) throws Exception {
        List list = new ArrayList();
        //1.获取参数中resultType所对应的字节码
        Class domainClass = Class.forName(resultType);
        //3.遍历结果集
        while (rs.next()) {
            //4.获取要封装的实体类对象
            Object domain = domainClass.newInstance();
            //取出rs中的源信息(结果集中有多少列,每列的名称等等)
            ResultSetMetaData rsmd = rs.getMetaData();
            //得到当前的列数
            int columnCount = rsmd.getColumnCount();
            //遍历列数
            for (int i = 1; i <= columnCount; i++) {
                //取出每列的名称
                String columnName = rsmd.getColumnName(i);//它其实就是我们实体类中的属性名称
                //得到当前列名(属性名)的属性描述器
                PropertyDescriptor pd = new PropertyDescriptor(columnName, domainClass);
                //得到它的写方法
                Method writeMethod = pd.getWriteMethod();
                //取出要赋的值
                Object value = rs.getObject(columnName);
                //方法执行
                writeMethod.invoke(domain, value);
            }
            //把封装好的domain加入到集合中
            list.add(domain);
        }
        return list;
    }
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容