@@ -31,14 +31,14 @@ The major and minor number of this library refers to the compatible Spring frame
31
31
32
32
API changes will follow SEMVER and loosly the Spring Framework releases.
33
33
34
- | ` spring-data-dynamodb ` version | Spring Framework compatibility | Spring Data compatibility |
35
- | ------------------------------- | ------------------------------ | ------------------------- |
36
- | 1.0.x | >= 3.1 && < 4.2 | |
37
- | 4.2.x | >= 4.2 && < 4.3 | Gosling-SR1 |
38
- | 4.3.x | >= 4.3 && < 5.0 | Gosling-SR1 |
39
- | 4.4.x | >= 4.3 && < 5.0 | Hopper-SR2 |
40
- | 4.5.x | >= 4.3 && < 5.0 | Ingalls |
41
- | 5.0.x | >= 5.0 | Kay-SR1 |
34
+ | ` spring-data-dynamodb ` version | Spring Boot compatibility | Spring Framework compatibility | Spring Data compatibility |
35
+ | ------------------------------- | ------------------------------ | ------------------------------ | ------------------------- |
36
+ | 1.0.x | | >= 3.1 && < 4.2 | |
37
+ | 4.2.x | => 1.3.0 && < 1.4.0 | >= 4.2 && < 4.3 | Gosling-SR1 |
38
+ | 4.3.x | => 1.4.0 < 2.0 | >= 4.3 && < 5.0 | Gosling-SR1 |
39
+ | 4.4.x | => 1.4.0 < 2.0 | >= 4.3 && < 5.0 | Hopper-SR2 |
40
+ | 4.5.x | => 1.4.0 < 2.0 | >= 4.3 && < 5.0 | Ingalls |
41
+ | 5.0.x | => 2.0 | >= 5.0 | Kay-SR1 |
42
42
43
43
` spring-data-dynamodb ` depends directly on ` spring-data ` as also ` spring-context ` , ` spring-data ` and ` spring-tx ` .
44
44
@@ -148,6 +148,11 @@ public class User {
148
148
149
149
public User () {
150
150
}
151
+
152
+ public User (String firstName , String lastName ) {
153
+ this . firstName = firstName;
154
+ this . lastName = lastName;
155
+ }
151
156
152
157
@DynamoDBHashKey
153
158
@DynamoDBAutoGeneratedKey
0 commit comments