操作数据库sqlsession类的获取方法

public class SqlSessionUtil {
    /**
     * 单例模式:1. 本类不能在外部实例化 2.单例的方法,在方法中创建本类的实例。 3. 向外公开一个静态的方法,返回本类的实例。
     */
    private SqlSessionUtil() {
    }

    private static Reader reader;
    // 读取主配置文件,形成一个文件流.配置文件只需要读取一次就行了,所以写在静态代码块中
    static {
        try {
            reader = Resources.getResourceAsReader("config/mybatis-config.xml");
        } catch (IOException e) {
            System.out.println(e.getMessage());
        }
    }
    private static SqlSessionFactory factory = null;
    private static Object obj = new Object();

    // 单例模式的SqlSessionFactory工厂
    private static SqlSessionFactory getSessionFactory() {
        
        if (factory == null) {
            synchronized (obj) { // 锁
                if (factory == null) { //
                    factory = new SqlSessionFactoryBuilder().build(reader);
                }
            }
        }

        return factory;
    }

    // 向外公开一个方法,返回SqlSession对象。
    public static SqlSession getSession() {
        return getSessionFactory().openSession();
    }
}

你可能感兴趣的:(d',s')