주석을 attributes
사용하여 JPA2를 사용하여 다음 클래스에서지도 를 유지할 수 있는지 궁금합니다.
public class Example {
long id;
// ....
Map<String, String> attributes = new HashMap<String, String>();
// ....
}
이미 기존 프로덕션 데이터베이스가 있으므로의 값이 attributes
다음 기존 테이블에 매핑 될 수 있습니다.
create table example_attributes {
example_id bigint,
name varchar(100),
value varchar(100));
Map<String, SomeOtherClass>