HV000030: No validator could be found for constraint 'javax.validation.constraints. NotBlank' validating type 'java.lang.Long'. Check configuration for 'id'
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "user_id")
@NotBlank
private Long id;
UserEntity에 @Id 어노테이션을 옵션으로 달았던 컬럼에 @NotBlank를 달았던 것이 원인이 되었다.
PK를 갖는 컬럼에는 @NotBlank를 달면 안된다.