码迷,mamicode.com
首页 > 编程语言 > 详细

mybatis-spring 集成

时间:2017-05-24 10:14:54      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:nbsp   ssi   nes   try   date   html   pre   update   mybatis   

http://www.mybatis.org/spring/zh/index.html

http://www.mybatis.org/mybatis-3/zh/java-api.html

 

 

编程API:

 

SqlSession session = sqlSessionFactory.openSession();
try {
    // following 3 lines pseudocod for "doing some work"
    session.insert(...);
    session.update(...);
    session.delete(...);
    session.commit();
} finally {
    session.close();
}

mybatis-spring 集成

标签:nbsp   ssi   nes   try   date   html   pre   update   mybatis   

原文地址:http://www.cnblogs.com/FlyAway2013/p/6896996.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!