스프링 데이터베이스(2)
-
Spring - mybatis
- Spring Framework에서 제공하는 JDBC 라이브러리를 보다 쉽게 작업할 수 있도록 만든 라이브러리 - Mapper의 역할을 확장하여 쿼리문 작성을 모두 Mapper에서 할 수 있도록 지원한다. 1. 라이브러리 추가하기 https://mvnrepository.com/search?q=mybatis Maven Repository: mybatis An enhanced toolkit of Mybatis to simplify development. Last Release on Aug 23, 2020 mvnrepository.com mybatis를 선택하여 아래 두개의 최신버전의 dependency를 복사하여 pom.xml에 추가한다. 추가한 전체 pom.xml 코드 4.0.0 cookingcoding..
2020.09.01 -
Spring - JDBC(mysql)
- Spring Framework는 JDBC 프로그래밍을 위해 JdbcTemplate 클래스를 제공하고 있다. - JdbcTemplate 클래스는 SQL 쿼리문을 손쉽게 구현할 수 있도록 구현되어 있다. 1. 라이브러리 추가하기 https://mvnrepository.com/search?q=spring+jdbc Maven Repository: spring jdbc Spring Context Last Release on Jul 21, 2020 mvnrepository.com 위 사이트에서 spring jdbc를 검색하여 맨 위 Spring jdbc를 클릭한다. 가장 최신버전으로 들어가 dependency를 가져와 pom.xml에 추가한다. 그 다음으로 mysql connecter를 설치하기 위해 sprin..
2020.09.01