From 3bafb886622d73807f030d04d9038823e1342f96 Mon Sep 17 00:00:00 2001 From: Mark Pollack Date: Fri, 3 Dec 2010 11:03:06 -0500 Subject: [PATCH] README updates. --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 08bd975bf..8bf49ad24 100644 --- a/README.md +++ b/README.md @@ -39,15 +39,15 @@ For those in a hurry: * The MongoTemplate is the central support class for Mongo database operations. It supports -** Basic POJO mapping support to and from BSON -** Connection Affinity callback -** Exception translation into Spring's + * Basic POJO mapping support to and from BSON + * Connection Affinity callback + * Exception translation into Spring's Future plans are to support optional logging and/or exception throwing based on WriteResult return value, common map-reduce operations, GridFS operations. A simple API for partial document updates is also planned. * To simplify the creation of Data Repositories a generic Repository interface and base class is provided. Furthermore, Spring will automatically create a Repository implementation for you that add implementations of finder methods you specify on an interface. For example the Repository interface is - public interface Repository { + public interface Repository { T save(T entity); @@ -66,7 +66,7 @@ Future plans are to support optional logging and/or exception throwing based on void delete(Iterable entities); void deleteAll(); - } + } and there is a placeholder interface called MongoRepository that will in future add more Mongo specific methods.