The reason of your problem is you don't use @Entity class annotation for your class.
True code is :
@Entity public class Role { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; }