[mybatis] JAVA로 config 설정


[mybatis] JAVA로 config 설정

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 public static SqlSession getSqlSession(String prefix) throws Exception { SqlSessionFactory factory = new SqlSessionFactoryBuilder().build(createSqlMap(prefix)); SqlSession sqlSession = factory.openSession(false); return sqlSession; } private static InputStream createSqlMap(String prefix) throws Exception { Reader reader = Resources.getResourceAsReader("p...



원문링크 : [mybatis] JAVA로 config 설정