@ElementCollection1 [JPA] @ElementCollection, @CollectionTable을 통한 값 타입 컬렉션 사용법 값 타입 int, Integer, String처럼 단순히 값으로 사용하는 자바 기본 타입이나 객체이다. 값타입 분류 기본값 타입 자바 기본 타입(int, double) 래퍼 클래스(Integer, Long) String 임베디드 타입(embedded type, 복합 값 타입) 컬렉션 값 타입(collection value type) 값 타입 컬렉션 값 타입을 컬렉션에 담아서 사용하는 것을 값 타입 컬렉션이라고 한다. //기본 값 타입 컬렉션 List stringlist = new ArrayList(); //임베디드 값 타입 컬렉션 Set addressSet = new HashSet(); 만약 다음과 같이 데이터베이스 안에 값 타입 컬렉션을 저장하려면 어떻게 해야 할까? 기본적으로 관계형 데이터베이스에는 .. 2023. 4. 22. 이전 1 다음