@Column 컬럼을 매핑 name : 필드와 매핑할 테이블의 컬럼 이름 @Column(name = "name") private String username; insertable / updateable : 등록, 변경 가능 여부 / 기본값 : TRUE //DB에 insert문이 처리될 때 할건지 말건지 / update문 처리될때 반영할건지 말건지 @Column(insertable=true, updatable=true) private String username; nullable : null 값의 허용 여부 설정 (false로 설정하면 DDL 생성시 not null 처리) / 기본값 : TRUE // false일 경우, not null 제약조건이 걸린다 @Column(nullable=false) priva..