2024/08/13

Spring/Spring_inflearn

[Spring 입문] Spring DB 접근 기술 -- 순수 JDBC

dependencies { implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' implementation 'org.springframework.boot:spring-boot-starter-web' testImplementation 'org.springframework.boot:spring-boot-starter-test' implementation 'org.springframework.boot:spring-boot-starter-jdbc' runtimeOnly 'com.h2database:h2'}자바는 DB와 붙으려면 JDBC 드라이버가 꼭 필요하다!bundle.gradle 에 추가하자~ application.properties..

Spring/Spring_inflearn

[Spring 입문] Spring DB 접근 기술 -- H2 DB

스프링 DB 종류 및 변천사 1. H2 DataBase- 개발이나 테스트 용도로 가볍고 편리한 DB, 웹화면 제공 2. 순수 Jdbc- 20여년 전에 쓰였던 노가다성 DB 3. 스프링 JdbcTemplate- 순수 Jdbc에서 중복을 제거하고 보다 쓰기 편리하게 나온 템플릿 4. JPA- 개발자들이 직접 SQL 문을 작성하지 않아도 자동으로 작성해줌- 스프링만큼이나 오래된 기술 5. 스프링 데이터 JPA- JPA를 편리하게 쓸 수 있도록 감싼 기술  1. H2 DataBase- 개발이나 테스트 용도로 가볍고 편리한 DB, 웹화면 제공https://www.h2database.com/html/main.html 다운로드 받은 파일 압축 풀고 bin 폴더에서 터미널 켜서 설치chmod 755 h2.sh./h2...

함s
'2024/08/13 글 목록