목록H2 (2)
DevKim
* H2 = In-memory DB로, 서버가 작동할 때만 돌아가는 DB임 -> 서버가 작동을 멈추면 데이터가 모두 삭제됨 -> 연습용으로 좋아서 선택 0. spring DB로 H2를 사용할것이고, 웹콘솔 보이게 하기 spring.h2.console.enabled=true spring.datasource.url=jdbc:h2:mem:testdb spring.jpa.show-sql=true //jpa 실습시 사용 "http://localhost:8080/h2-console" 1. Person table 생성 CREATE TABLE IF NOT EXISTS person ( id bigint(5) NOT NULL AUTO_INCREMENT, name varchar(255) NOT NULL, age bigint..
RDBMS (Relation DataBase Management System) - 관계형 정보 관리 시스템 1. MySQL - 나중에 프로젝트 배포시 AWS RDS라는 서비스를 사용해 붙여볼 예정 2. H2 : In-memory DB = 서버가 작동할 때만 돌아가는 데이터베이스 서버가 작동을 멈추면 데이터가 모두 삭제됨 -> 연습용에 좋음! //application.properties spring.h2.console.enabled=true spring.datasource.url=jdbc:h2:mem:testdb // 스프링에 H2라는 데이터베이스에 웹콘솔 보이게 해줘 // 스프링의 데이터 소스 데이터베이스로 H2를 사용할거야. jdbc = java에서 DB에 접속할 수 있도록 하는 java API loc..