목록WEB/Spring (2)
곽로그
[spring] h2 설정하기
1. application.properties spring.h2.console.enabled=true spring.datasource.url=jdbc:h2:mem:springcoredb 2. application run 3. 접속 http://localhost:8080/h2-console 4. 접속 설정 - 처음 접속할 경우 JDBC URL이 jdbc:h2:mem:testdb로 되어있을 것이다. - testdb를 위에 application.properties에서 설정해주었던 db이름으로 세팅해준다.
WEB/Spring
2021. 4. 28. 22:07
[Spring] 생성시간, 최종수정시간 반영하기
1. TimeStamp클래스 @MappedSuperclass //상속했을 때, 칼럼으로 인식하게 한다. @EntityListeners(AuditingEntityListener.class) //생성, 수정시간을 자동으로 반영 public class TimeStamp { @CreatedDate private LocalDateTime createdAt; @LastModifiedDate private LocalDateTime modifiedAt; } 2. TimeStamp를 상속받은 Person클래스 @NoArgsConstructor @Entity public class Person extneds TimeStamp { @GeneratedValue(strategy = GenerationType.AUTO) @Id ..
WEB/Spring
2021. 3. 29. 09:10