本文共 494 字,大约阅读时间需要 1 分钟。
注意 id与接口的方法名一一对应
public SqlSessionFactory getsqlSessionFactory() throws IOException { String resource = "conf/mybatis-config.xml"; InputStream inputStream = Resources.getResourceAsStream(resource); SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream); return sqlSessionFactory; }
sqlSession.commit();
转载地址:http://nhetz.baihongyu.com/