标签: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();
}
标签:nbsp ssi nes try date html pre update mybatis
原文地址:http://www.cnblogs.com/FlyAway2013/p/6896996.html