You are trying to save a string value longer than 255 characters. Just increase the length of the column.
@Column(name = "xxx", length = 1024)
you also need to change the length of the column in the database.
When you use
@Column(name = "xxx")
Hibernate uses the default column length.
You can use @Lobfor really big text data.
, xxx_users tblusers.
User Users.
CascadeType.ALL @OneToMany .
@ManyToOne .
@ManyToOne(fetch = FetchType.Lazy)
pravate User user;