#65 - Added example project for Spring Data web support.

This commit is contained in:
Oliver Gierke
2015-03-09 11:04:00 +01:00
parent 2c97493f9f
commit df7fcb0edb
17 changed files with 815 additions and 0 deletions

6
web/README.md Normal file
View File

@@ -0,0 +1,6 @@
# Spring Data - web support example
This example shows some of the Spring Data integration features with Spring MVC.
1. See how we plug into Spring MVC to create `Pageable` instances from request parameters in `UserController.users(…)`.
2. See how interfaces can be used to bind request payloads in `UserController.UserForm`. Spring Data creates a `Map`-backed proxy for you to easily create form-backing objects.