Database

    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..

    [DB] H2 데이터베이스 설치 on M1 MacOS AND Windows

    [DB] H2 데이터베이스 설치 on M1 MacOS AND Windows

    H2 데이터베이스를 설치해보자. H2 데이터베이스는 용량이 작고 가볍고, 웹으로 화면을 제공해주는 오픈소스이다. 최신 버전을 설치하기보단 이전 번전인 1.4.200 버전을 다운로드 받을것이다. 1. H2 Database 압출파일 받기 아래의 H2 홈페이지에 접속하여 압축파일을 다운로드 할 수 있다. https://h2database.com/html/main.html H2 Database Engine H2 Database Engine Welcome to H2, the Java SQL database. The main features of H2 are: Very fast, open source, JDBC API Embedded and server modes; in-memory databases Browser..