6. SpringBoot 입문 - Spring DB 접근 기술 - 통합 테스트
H2 데이터베이스 설치 순수 JDBC Spring 통합 테스트 Spring JdbcTemplate JPA Spring Data JPA (JPA를 더 편리하게) 3. Spring 통합 테스트 Spring을 올리고 DB까지 연결해서 동작하는 테스트를 해보겠습니다. 기존에 해온 테스트는 순수Java 코드로 작성한 테스트였지만 이젠 Spring을 올린 상태에서 테스트해야 하므로.. @SpringBootTest 어노테이션을 추가해줍니다. /test/java/hello.hellospring/service/MemberServiceIntegrationTest package hello.hellospring.service; import hello.hellospring.domain.Member; import hello.he..
2021.05.26