Skip to content

Latest commit

 

History

59 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Junit Bank App

Jpa LocalDateTime 자동으로 생성하는 법

  • @EnableJpaAuditing(Main 클래스)

  • @EntityListeners(AuditingEntityListener.class) (Entity 클래스)

  • @CreatedDate //INSER에T 시 자동생성
    @Column(nullable = false)
    private LocalDateTime createdAt;
    
    @LastModifiedDate //INSERT or, UPDATE
    @Column(nullable = false)
    private LocalDateTime updatedAt;

About

Junit 중급 강의(스프링부트+시큐리티+Junit)

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages