#380 - Adapt to changed API.

New CustomConversions API.
More limited access strategies introduced through the immutable support.
Fixed dependencies of the r2dbc example.
This commit is contained in:
Jens Schauder
2018-07-24 12:30:46 +02:00
parent b0bfdaeaee
commit 7d9e4f82cf
5 changed files with 83 additions and 48 deletions

View File

@@ -15,6 +15,8 @@
*/
package example.springdata.r2dbc.basics;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.Value;
import org.springframework.data.annotation.Id;
@@ -22,7 +24,8 @@ import org.springframework.data.annotation.Id;
/**
* @author Oliver Gierke
*/
@Value
@Data
@AllArgsConstructor
class Customer {
@Id Integer id;
String firstname, lastname;