Files
spring-data-examples/web/example
Oliver Gierke 7519f8e385 #205 - Added build profile for Spring 5.
Inverted dependencies in the web example as Spring Boot 1.4 ships Tomcat 8.5.4 which contains JPA 2.0 types and — if they end up on the classpath before the actual JPA API jar — breaks the Spring 5 JPA bootstrap as it's assuming JPA 2.1 to be the fundamental baseline.
2016-07-28 18:09:18 +02:00
..

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.