프로그래밍 언어/spring-이슈

    [Lombok] Lombok Collection NullPointerException

    ※이 글은 제가 오류를 고친 해결방안으로, 정답이 아닐 수 있습니다. 오류 부분 @Builder public class Post extends BaseTimeEntity { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private long id; @OneToMany(mappedBy = "post", cascade = CascadeType.ALL) private List images = new ArrayList(); // 임시 이미지 아이디, join 필요 =================================================== 이곳에서 초기화 되지 않고 images == null ===========================..

    [Junit5] Intellij No tests found for given cludes

    오류 Execution failed for task ':test'. No tests found for given includes: filter.includeTestsMatching 해결방안 File -> Setting -> Build -> Build Tools -> Gradle -> Run tests using -> Intellij IDEA 로 수정 정

    [JPA] saveAll 주인Entity 저장 안되는 오류

    ※이 글은 제가 오류를 고친 해결방안으로, 정답이 아닐 수 있습니다. 오류 saveAll 주인Entity 저장 안되는 오류 해당코드 더보기 @Override public void savePost(PostRequestDTO postDTO, List imgList) { Post post = postDTO.toEntity(); List postImgResponseDTOS = fileService.saveImage(post, imgList); Post savedPost = postRepository.save(post); List postImgEntityList = new ArrayList(postImgResponseDTOS.stream() .map(PostImgResponseDTO::toEntity) .coll..