README updates.

This commit is contained in:
Mark Pollack
2010-12-03 11:08:30 -05:00
parent 2b0c85b235
commit 01775d288e

View File

@@ -48,7 +48,7 @@ Future plans are to support optional logging and/or exception throwing based on
* 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<T, ID extends Serializable> {'
`public interface Repository<T, ID extends Serializable> {`
T save(T entity);
@@ -67,7 +67,7 @@ Future plans are to support optional logging and/or exception throwing based on
void delete(Iterable<? extends T> entities);
void deleteAll();
'}'
`}`
and there is a placeholder interface called MongoRepository that will in future add more Mongo specific methods.