1. package com.example.aninbatis.sqlsession;
    2. /**
    3. * SqlSession工程
    4. */
    5. public interface SqlSessionFactory {
    6. /**
    7. * 开启SqlSession
    8. */
    9. SqlSession openSqlSession();
    10. }