MyBatis工作流程

Mybatis工作流

读取配置文件

生成SqlSessionFactory 

建立SqlSession


建立 

调用Mybatis提供的API 


查询MAP配置

返回结果 

关闭SqlSession  

Mybatis工作流——HelloWorld

建立MySQL数据库 

建立JiKeUser表 

键入一条记录

建立JiKeUser类 

查询代码  

bug处理:

      The method selectOne(String, Object) in the type SqlSession is not applicable for the arguments (String, int)

       处理办法:项目文件夹,右键,properties,Java Compiler 修改Compiler compliance lever 为1.6   


你可能感兴趣的:(MyBatis工作流程)