Spring和Mybatis整合英文文档翻译

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

Spring和Mybatis整合英文文档翻译
Introduction to MyBatis-Spring
MyBatis-Spring介绍
MyBatis-Spring helps you integrate your MyBatis code seamlessly with Spring. Using the classes in this library, Spring will load the necessary MyBatis factory and session classes for you. This library also provides an easy way to inject MyBatis data mappers into your service beans. Finally, MyBatis-Spring will handle transactions and translate MyBatis exceptions into Spring DataAccessExceptions.
MyBatis-Spring帮助我们将MyBatis代码无缝的和Spring整合起来。

通过使用这个类库中类,Spring将为我们加载MyBatis工厂以及session相关的类。

这个类库也提供了一种简单的方式注入MyBatis 数据映射器到我们的业务Beans中去。

最后,MyBatis-Spring将会处理事务以及转换MyBatis的异常为Spring的DataAccessExceptions.
Quick Setup
快速开始
To use MyBatis with Spring you need at least two things defined in the Spring application context: an SqlSessionFactory and at least one data mapper class. In MyBatis-Spring, an SqlSessionFactoryBean is used to create an SqlSessionFactory. To configure the factory bean, put the following in the Spring XML configuration file:
为了能够使用MyBatis和Spring,我们至少需要在Spring 应用上下文中定义两个东西:一个SqlSessionFactory和至少一个数据映射器类。

在MyBatis-Spring中,SqlSessionFactoryBean 被用作创建SqlSessionFactory。

为了能够配置这个工厂Bean,需要将如下代码放入Spring的XML配置文件:。

相关文档
最新文档