【Java】 로컬 DB와의 접속(IntelliJ+SpringBoot)
5666 단어 IntelliJSpringBootDB자바
IJ + SpringBoot로 DB와 연결
DataBase 탭 > Data Source > H2 선택
Data Sources and Drivers
H2 콘솔에서 실행되는 스키마 쓰기 실행
create table if not exists employee (
employee_id bigint primary key,
employee_name varchar(50),
age int
);
실행하면 tabel이 가능
INSERT INTO employee(employee_id,employee_name,age)
VALUES(1,'Harry Potter',11);
INSERT INTO employee(employee_id,employee_name,age)
VALUES(2,'Hermione Granger',11);
INSERT INTO employee(employee_id,employee_name,age)
VALUES(3,'Ron Weasley',12);
INSERT INTO employee(employee_id,employee_name,age)
VALUES(4,'Albus Dumbledore',110);
-- 削除する時
-- DELETE FROM EMPLOYEE
-- WHERE employee_id = 1
DB가 되어 있는지 확인
data.sql 작성
data.sql
에도 복사하여 작성 application.yml
에 클래스 패스 data: classpath:data.sql
추가 application.yml
spring:
datasource:
url: jdbc:h2:mem:testdb;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
username: sa
password:
driver-class-name: org.h2.Driver
schema: classpath:schema.sql
data: classpath:data.sql
h2:
console:
enabled: true
h2 콘솔에서도 확인할 수 있다!
Reference
이 문제에 관하여(【Java】 로컬 DB와의 접속(IntelliJ+SpringBoot)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/suema0331/items/79f699ce9a5141f378e8텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)