[Spring] JPA Hibernate 칼럼 파싱 문제
·
Spring
겪은 문제PropertyReferenceException: No property 'created' found for type 'Post'; Did you mean 'createdAt’ 이 에러가 계속 떠서 어디서 발생하는 에러지? 하고 보니 findByTitleContainingAndCreatedAtBetween 쿼리 메서드를 호출할 때 발생했다. public PostsResponseDto getPosts(int page, String sortTypeStr, String search, String start, String end) { SortType sortType = SortType.fromColumn(sortTypeStr); Sort sort = Sort.by(sortT..