public class FollowerCreateDto {
@Getter
@NoArgsConstructor
@AllArgsConstructor
public static class Request {
@NotBlank
private Long followerId;
}
}
validation을 적용하면서 '@NotBlank'를 추가했는데 오류가 발생했다
@NotBlank 어노테이션은 문자타입에만 사용가능하다
숫자타입이기 때문에
@NotBlank -> @NotNull
변경하여 오류를 해결했다
public class FollowerCreateDto {
@Getter
@NoArgsConstructor
@AllArgsConstructor
public static class Request {
@NotNull
private Long followerId;
}
}
'트러블슈팅' 카테고리의 다른 글
참조타입 Boolean 기본값 문제 (0) | 2024.09.24 |
---|---|
spring boot 실행시 BeanCreationException (0) | 2024.09.19 |
Cannot add or update a child row: a foreign key constraint fails Error (0) | 2024.08.29 |