Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 313 Bytes

JPA AttributeOverride.md

File metadata and controls

14 lines (11 loc) · 313 Bytes

JPA AttributeOverride Tip

@AttributeOverride(name = "id", column = @Column(name = "post_id"))
@Entity
public class Post {
   
     private Long id;
     private String name;
     private String title;
}

위와 같이 사용하면 id 컬럼이 DB에 저장될 때는 post_id로 저장된다.