Files
spring-data-examples/web/example
Oliver Gierke 6684c8c69b #190 - More simplifications for Spring Boot 1.4 M3.
Replaced all occurrences of @SpringApplicationConfiguration with @SpringBootTest. Using SpringRunner instead of @SpringJUnit4ClassRunner now.
2016-06-10 21:26:46 +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.