79418321

Date: 2025-02-06 14:37:43
Score: 1
Natty:
Report link

Your database should AUTO_INCREMENT the primary key. Uou should use stratery = GenerationType.IDENTITY so that Hibernate can rely upon primary key generated by DBMS.

@Id
@GeneratedValue(strategy = GenerationType.IDENTITY) 
private Long id;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Yasin Ahmed