79615603

Date: 2025-05-10 14:53:36
Score: 0.5
Natty:
Report link
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name="id", insertable = false, updatable = false)
private Long id;

Add @Column annotation to your id field so that hibernate will not include id column when generating insert queries.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: bidulgi69