Spring/SpringBoot (JPA)

__ Postgresql Timestamp Entity 설정법__ JPA 테이블 생성시간, 수정시간 자동생성 하는 법__ Postgresql Timestamp 형식 Entity 설정하는 법아래랑 다른 형식 쓰면 bytea 로 들어가고 난리임@Column(nullable = false, updatable = false)private LocalDateTime createTime;@Temporal(TemporalType.TIMESTAMP)private Date loginTimestamp;private Timestamp logTimestamp; // 매핑될 필드Postgresql 의 DEFAULT CURRENT_TIMESTAMP 설정 주는 법아래처럼 설정하면 DDL 에 DEFAULT CURRENT TIMESTA..
keartt
'Spring/SpringBoot (JPA)' 카테고리의 글 목록