我的项目中具有以下Maven依赖项.
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
<version>2.5.6</version>
</dependency>
我们将iBatis用于ORM.
>赋予这种依赖性的目的是什么?
>如果要在Spring和iBatis之间架起桥梁,这是必需的吗?
>一般来说,Spring和iBatis之间是如何联系的?
感谢您的答复.
解决方法:
What is the purpose of giving this dependency?
Is this required if I to have bridge between Spring and iBatis?
它增加了支持(胶水代码)以将各种ORM解决方案与Spring集成在一起,包括Hibernate 3/4,iBatis,JDO和JPA.当然,它本身并不是ORM,它只是一座桥梁.您仍然需要包括相关的库.
In general how Spring and iBatis linked?
引用官方文档:12.5. iBATIS SQL Maps:
iBATIS support works with Spring’s exception hierarchy and let’s you enjoy the all IoC features Spring has.
Transaction management can be handled through Spring’s standard facilities.