java - Spring Data vs Couchbase SDK -
what difference between spring data library , couchbase java sdk? 1 preferred on other in specific scenarios? if working on spring project , spring data preferred on couchbase java sdk?
spring data helps create automatic data access objects based on entity definitions. works multiple types of data stores.
so, write own daos insert/update/delete/select items couchbase, or let spring data you.
also, if need switch data stores later, data access interfaces wouldn't change.
Comments
Post a Comment