public void throwExceptionWhenBlankContent(String content) {
if (content.isBlank()) {
throw errorHelper.badRequest(
"Content must not be null and must contain at least one non-whitespace character");
}
}
와 같이 Blank와 관련된 필터링 메소드가
특정 엔티티의 Service 클래스 마다 반복됨
와 같이 Blank와 관련된 필터링 메소드가
특정 엔티티의 Service 클래스 마다 반복됨