Skip to content

5solbin/bank

Repository files navigation

스프링 부트 Junit 테스트 강의

Junit Bank App

Jpa LocalDateTime 자동으로 생성하는 법

  • @EnableJpaAuditing (Main 클래스)
  • @EntityListners(AuditingEntityListner.class) (Entity 클래스)
    @CreatedDate // Insert
    @Column(nullable = false)
    private LocalDateTime createdAt;

    @LastModifiedDate //Update
    @Column(nullable = false)
    private LocalDateTime updatedAt;

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors