Files
spring-data-examples/web/example
Oliver Gierke 4164bc4607 #297 - Upgraded to Boot 2.0 and Spring Data Kay.
Bumped version number to 2.0. Upgraded to Spring Boot 2.0.

Stuff disabled in the meantime:

- Cassandra: needs API adaptions in configuration
- JPA > Security: test fails with weird Hibernate error
- Redis > Reactive: API updates needed
- Solr: configration updates necessary

adjust versions

Updated elastic search to the new version.

Fixed the reactor version to Bismuth-BUILD-SNAPSHOT. This probably should be undone when boot references the proper bom.
2017-10-06 15:15:53 +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.