Spring Data access
H2 : 개발이나 테스트 용도로 가볍고 편리한 DB, 웹 화면 제공
./h2.sh
→ JDBC URL : jdbc:h2:tcp://localhost/~/test 로 변경
jsx
drop table if exists member CASCADE;
create table member
(
id bigint generated by default as identity,
name varchar(255),
primary key (id)
);