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.

link|improve this question
feedback

1 Answer

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:

  • elimination of a large chunk of the implementation code needed for repositories (see this blog post for a showcase)
  • abstractions for pagination and dynamic sorting
  • DDD specifications to allow defining domain predicates (see this blog post as example)
  • support for Querydsl predicates
  • transparent entity auditing

The JDBC module of Spring contains support for Querydsl as well.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.