db연결

    Spring boot와 h2 Database 연동 오류발생

    Spring boot와 h2 Database 연동 오류발생

    1. 문제 사항 Embedded H2 DataBase를 웹으로 연결하니 localhost가 거부했다는 페이지가 떴다. DB 설정 application.yml spring: datasource: driver-class-name: org.h2.Driver url: jdbc:h2:mem:testdb username: sa password: jpa: hibernate: ddl-auto: create show-sql: true properties: hibernate: dialect: org.hibernate.dialect.H2Dialect h2: console: enabled: true path: /h2-console settings: web-allow-others: true 2. 원인 Spring Boot Pr..