본문 바로가기
IT/Spring

2021-09-30-JPA 관계 찾지 못하는 경우

by 봉즙 2023. 2. 28.

layout : post
title : "JPA 관계를 찾지 못할 때"

category : Spring

class Computer {

    private Cpu cpu;

    @org.hibernate.annotations.NotFound(action=NotFoundAction.IGNORE)
    private Ssd ssd;

    @org.hibernate.annotations.NotFound(action=NotFoundAction.IGNORE)
    private Hdd hdd;

}

어노태이션을 설정하면 Ssd나 Hdd를 찾지 못하는 경우 무시를 해주도록 설정할 수 있다.

'IT > Spring' 카테고리의 다른 글

2021-10-15-SpringCloud  (0) 2023.02.28
2021-10-06-배포 방법  (0) 2023.02.28
2021-09-09-WebClient  (0) 2023.02.28
2021-09-09-JSON Naming  (0) 2023.02.28
2021-09-01-flyway  (0) 2023.02.28

댓글