JpaRepository 和 MongoRepository 有什么区别?

What is the difference between JpaRepository and MongoRepository?

我不知道 JpaRepositoryMongoRepository 之间的区别。

JPARepository 和 MongoRepository 是 Spring 数据存储库的特定技术抽象。

如果您正在使用 RDBMS,例如 MySQL/PostgreSQL,您可以使用 Spring 数据存储库,例如 JpaRepository。 如果使用诸如 Mongo 之类的 NoSQL,您将需要 MongoReposiroty。