From bf4d9c2bcc17871d964484a45e9a7da96b43d408 Mon Sep 17 00:00:00 2001 From: Oliver Gierke Date: Fri, 31 Jan 2014 14:41:39 +0100 Subject: [PATCH] Added note on JDK 8 for Java 8 JPA project. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b219ab09..df3e85fa 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ We have separate folders for the samples of individual modules: ## Spring Data JPA * `spring-data-jpa-example` - Probably the project you want to have a look at first. Contains a variety of sample packages, showcasing the different levels at which you can use Spring Data JPA. Have a look at the `simple` package for the most basic setup. -* `java8-auditing` - Example of how to use Spring Data JPA auditing with Java 8 date time types. +* `spring-data-jpa-java8-auditing` - Example of how to use Spring Data JPA auditing with Java 8 date time types. Note, this project requires to be build with JDK 8. * `spring-data-jpa-showcase` - Refactoring show case of how to improve a plain-JPA-based persistence layer by using Spring Data JPA (read: removing close to all of the implementation code). Follow the `demo.txt` file for detailed instructions. * `spring-data-jpa-interceptors` - Example of how to enrich the repositories with AOP.