복습 프로젝트 (2) 스프링부트4.x에서 h2-console웹 오류
·
복습 프로젝트
문제상황 implementation 'org.springframework.boot:spring-boot-starter'implementation 'org.springframework.boot:spring-boot-starter-web'implementation 'org.springframework.boot:spring-boot-starter-data-jpa'// h2implementation 'com.h2database:h2'spring: datasource: url: jdbc:h2:mem:testdb driver-class-name: org.h2.Driver username: sa password: h2: console: enabled: true H2 사용을 위해..