79663617

Date: 2025-06-12 13:37:09
Score: 2
Natty:
Report link

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;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Entity
  • Low reputation (1):
Posted by: Ali İhsan TAŞDELEN