Intellij IDEA에서 인메모리 h2 데이터베이스에 액세스하는 방법 Spring Boot 프로젝트에서 IDE에서 인메모리 테이블을 보려고 합니다. Intellij IDEA에서 인메모리 h2 데이터베이스에 액세스하는 방법 다음은 제 애플리케이션의 일부입니다.yml: h2: datasource: url: jdbc:h2:mem:mydb username: username password: 123 driver-class-name: org.h2.Driver init-sql: h2.sql console: enabled: true path: /search/console settings: trace: false web-allow-others: false Intellij에는 메모리 내 데이터베이스에 대한 사용자 이름..