spring-data - 连接到关系数据库
研究 Spring-Data - 我理解为什么您会使用 NoSQL 数据库,但我很困惑为什么您会使用 Spring-Data 作为关系数据库而不是标准 Spring-ORM 功能(例如,JPA 支持作为标准)。
有人知道为什么要使用 spring-data 框架进行关系查询吗?
谢谢,
詹姆斯。
Researching Spring-Data - I understand why you would use for NoSQL databases but am struggling why you would use Spring-Data for relational databases over the standard Spring-ORM capabilities (e.g. the JPA support as standard).
Anyone got clear use-cases why you would use the spring-data framework for relational queries?
Thanks,
James.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Spring Data 项目的 JPA 模块与 NOSQL 不同,因为我们不需要自己提供低级存储抽象。所以主要特点是:
Spring 的 JDBC 模块也包含对 Querydsl 的支持。
The JPA Module of the Spring Data project is different from the NOSQL ones as we don't need to provide a low level store abstraction ourselves. So the main features are:
The JDBC module of Spring contains support for Querydsl as well.