토이 프로젝트/간단한 Springboot CRUD
SpringBoot + JPA + Thymeleaf + H2를 사용한 간단한 CRUD 프로젝트
SpringBoot + JPA + Thymeleaf + H2(DB)를 사용한 간단한 CRUD 프로젝트 프로젝트 구조 controller : UserController model : User repository : UserRepository Service : UserService, UserServiceImpl 프로젝트 생성 H2 데이터베이스 연동 application.properties #h2 console 활성화 및 경로 설정 spring.h2.console.enabled=true spring.h2.console.path=/h2-console #h2 데이터베이스 설정 spring.datasource.url=jdbc:h2:tcp://localhost/~/springbootCRUD; spring.dataso..