diff --git a/src/main/java/org/springframework/data/couchbase/core/CouchbaseOperations.java b/src/main/java/org/springframework/data/couchbase/core/CouchbaseOperations.java
index 6b4deccbf..c63cf69df 100644
--- a/src/main/java/org/springframework/data/couchbase/core/CouchbaseOperations.java
+++ b/src/main/java/org/springframework/data/couchbase/core/CouchbaseOperations.java
@@ -103,8 +103,9 @@ public interface CouchbaseOperations {
/**
* Query a View for a list of documents of type T.
*
- *
There is no need to {@link Query#setIncludeDocs(boolean)} explicitely, because it will be set to true all the
- * time. It is valid to pass in a empty constructed {@link Query} object.
+ * {@link Query#setIncludeDocs(boolean)} defaults to false. If you require the query to include the entire
+ * document, you will need to set it to true before calling this method. It is valid to pass in a empty
+ * constructed {@link Query} object.
*
* This method does not work with reduced views, because they by design do not contain references to original
* objects. Use the provided {@link #queryView} method for more flexibility and direct access.
@@ -130,7 +131,7 @@ public interface CouchbaseOperations {
* @param design the name of the design document.
* @param view the name of the view.
* @param query the Query object to customize the view query.
- * @return
+ * @return the view response.
*/
ViewResponse queryView(String design, String view, Query query);
diff --git a/src/main/java/org/springframework/data/couchbase/core/CouchbaseTemplate.java b/src/main/java/org/springframework/data/couchbase/core/CouchbaseTemplate.java
index 02ea0ecf7..20c32bdd1 100644
--- a/src/main/java/org/springframework/data/couchbase/core/CouchbaseTemplate.java
+++ b/src/main/java/org/springframework/data/couchbase/core/CouchbaseTemplate.java
@@ -168,9 +168,6 @@ public String doInBucket() {
public List findByView(final String designName, final String viewName,
final Query query, final Class entityClass) {
- if (!query.willIncludeDocs()) {
- query.setIncludeDocs(true);
- }
if (query.willReduce()) {
query.setReduce(false);
}
diff --git a/src/main/java/org/springframework/data/couchbase/repository/support/SimpleCouchbaseRepository.java b/src/main/java/org/springframework/data/couchbase/repository/support/SimpleCouchbaseRepository.java
index a1adefa43..2a60cc060 100644
--- a/src/main/java/org/springframework/data/couchbase/repository/support/SimpleCouchbaseRepository.java
+++ b/src/main/java/org/springframework/data/couchbase/repository/support/SimpleCouchbaseRepository.java
@@ -119,7 +119,7 @@ public Iterable findAll() {
String design = entityInformation.getJavaType().getSimpleName().toLowerCase();
String view = "all";
- return couchbaseOperations.findByView(design, view, new Query().setReduce(false),
+ return couchbaseOperations.findByView(design, view, new Query().setIncludeDocs(true).setReduce(false),
entityInformation.getJavaType());
}
diff --git a/src/test/java/org/springframework/data/couchbase/core/CouchbaseTemplateTests.java b/src/test/java/org/springframework/data/couchbase/core/CouchbaseTemplateTests.java
index 8e52c7762..33ebb4cf9 100644
--- a/src/test/java/org/springframework/data/couchbase/core/CouchbaseTemplateTests.java
+++ b/src/test/java/org/springframework/data/couchbase/core/CouchbaseTemplateTests.java
@@ -168,6 +168,7 @@ public void validFindById() {
@Test
public void shouldLoadAndMapViewDocs() {
Query query = new Query();
+ query.setIncludeDocs(true);
query.setStale(Stale.FALSE);
final List beers = template.findByView("test_beers", "by_name", query, Beer.class);
diff --git a/src/test/java/org/springframework/data/couchbase/repository/SimpleCouchbaseRepositoryTests.java b/src/test/java/org/springframework/data/couchbase/repository/SimpleCouchbaseRepositoryTests.java
index 90883dae2..5dadb8f06 100644
--- a/src/test/java/org/springframework/data/couchbase/repository/SimpleCouchbaseRepositoryTests.java
+++ b/src/test/java/org/springframework/data/couchbase/repository/SimpleCouchbaseRepositoryTests.java
@@ -77,7 +77,7 @@ public void simpleCrud() {
@Test
public void shouldFindAll() {
// do a non-stale query to populate data for testing.
- client.query(client.getView("user", "all"), new Query().setStale(Stale.FALSE));
+ client.query(client.getView("user", "all"), new Query().setIncludeDocs(true).setStale(Stale.FALSE));
Iterable allUsers = repository.findAll();
int size = 0;