Version bumps for Spring 5

Issue gh-4080
This commit is contained in:
Rob Winch
2016-10-14 17:36:15 -05:00
parent a18707c870
commit 08c1f500a7
23 changed files with 56 additions and 45 deletions

View File

@@ -27,7 +27,7 @@ import org.hibernate.validator.constraints.NotEmpty;
@Entity
public class Message {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
@NotEmpty(message = "Message is required.")