Notice
Recent Posts
Recent Comments
Link
목록crud (1)
DevKim
[Spring] CRUD - H2 DB 웹콘솔로 확인해보기
일단 학습을 위해, In-memory DB인 H2 DB를 사용하여 웹콘솔로 CRUD 되는 것을 확인해보았다. (+) DB의 기본인 생성일자와 수정일자도 추가해줌 먼저 웹콘솔로 보이게하기 위해 다음과 같은 코드를 추가해준다. spring.h2.console.enabled=true spring.datasource.url=jdbc:h2:mem:testdb CRUD를 위해 먼저 생성해야하는 것 1. repository -> extends JpaRepository 하면 됨 2. update을 위한 service package 학습 기록용 이기에.. 이런 부분들에 대해선 자세히 서술하진 않겠다. [1] Create repository.save(new Course("스프링 연습하기","홍길동")); +) 생성일자,수..
Spring Boot
2021. 4. 13. 11:33