首页 > 其他 > 详细

测试3

时间:2014-10-18 12:28:26      阅读:174      评论:0      收藏:0      [点我收藏+]

显示一段代码   " 显示代码  行内代码 

 1 public class SqlSessionFactoryBuilder {
 2 
 3   //Reader读取mybatis配置文件,传入构造方法
 4   //除了Reader外,其实还有对应的inputStream作为参数的构造方法,
 5   //这也体现了mybatis配置的灵活性
 6   public SqlSessionFactory build(Reader reader) {
 7     return build(reader, null, null);
 8   }
 9 
10   public SqlSessionFactory build(Reader reader, String environment) {
11     return build(reader, environment, null);
12   }
13   
14   //mybatis配置文件 + properties, 此时mybatis配置文件中可以不配置properties,也能使用${}形式
15   public SqlSessionFactory build(Reader reader, Properties properties) {
16     return build(reader, null, properties);
17   }
18   
19   //通过XMLConfigBuilder解析mybatis配置,然后创建SqlSessionFactory对象
20   public SqlSessionFactory build(Reader reader, String environment, Properties properties) {
21     try {
22       XMLConfigBuilder parser = new XMLConfigBuilder(reader, environment, properties);
23       //下面看看这个方法的源码
24       return build(parser.parse());
25     } catch (Exception e) {
26       throw ExceptionFactory.wrapException("Error building SqlSession.", e);
27     } finally {
28       ErrorContext.instance().reset();
29       try {
30         reader.close();
31       } catch (IOException e) {
32         // Intentionally ignore. Prefer previous error.
33       }
34     }
35   }
36 
37   public SqlSessionFactory build(Configuration config) {
38     return new DefaultSqlSessionFactory(config);
39   }
40 
41 }

 

只显示代码

 1 public class SqlSessionFactoryBuilder {
 2 
 3   //Reader读取mybatis配置文件,传入构造方法
 4   //除了Reader外,其实还有对应的inputStream作为参数的构造方法,
 5   //这也体现了mybatis配置的灵活性
 6   public SqlSessionFactory build(Reader reader) {
 7     return build(reader, null, null);
 8   }
 9 
10   public SqlSessionFactory build(Reader reader, String environment) {
11     return build(reader, environment, null);
12   }
13   
14   //mybatis配置文件 + properties, 此时mybatis配置文件中可以不配置properties,也能使用${}形式
15   public SqlSessionFactory build(Reader reader, Properties properties) {
16     return build(reader, null, properties);
17   }
18   
19   //通过XMLConfigBuilder解析mybatis配置,然后创建SqlSessionFactory对象
20   public SqlSessionFactory build(Reader reader, String environment, Properties properties) {
21     try {
22       XMLConfigBuilder parser = new XMLConfigBuilder(reader, environment, properties);
23       //下面看看这个方法的源码
24       return build(parser.parse());
25     } catch (Exception e) {
26       throw ExceptionFactory.wrapException("Error building SqlSession.", e);
27     } finally {
28       ErrorContext.instance().reset();
29       try {
30         reader.close();
31       } catch (IOException e) {
32         // Intentionally ignore. Prefer previous error.
33       }
34     }
35   }
36 
37   public SqlSessionFactory build(Configuration config) {
38     return new DefaultSqlSessionFactory(config);
39   }
40 
41 }

 

测试3

原文:http://www.cnblogs.com/frankii/p/4032708.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!