데이터 접근 기술을 테스트할 때 어떤 식으로 할 것인지를 배우는 챕터 테스트에서 중요한 원칙 테스트는 다른 테스트와 격리해야 한다. 테스트는 반복해서 실행할 수 있어야 한다. 테스트 - 데이터베이스 연동 먼저 데이터베이스 연동을 위해 test#application.properties에 아래 코드를 작성한다. spring.profiles.active=test spring.datasource.url=jdbc:h2:tcp://localhost/~/test2 spring.datasource.username=sa spring.datasource.password= #jdbcTemplate sql log logging.level.org.springframework.jdbc=debug @SpringBootTest cl..