스프링 데이터 Common 1. 리포지토리 - KwangtaekJung/inflearn-spring-data-jpa-keesun GitHub Wiki

스프링 데이터 Common: Repository

image

  • @NoRepositoryBean

  • Test 할때는 H2 Database를 사용하여 Postgres에는 영향이 없도록 한다.

    • H2 의존성만 추가하면 Test 수행 시에는 기본적으로 메모리 DB를 사용하도록 되어 있다.
		<dependency>
			<groupId>com.h2database</groupId>
			<artifactId>h2</artifactId>
			<scope>test</scope>
		</dependency>
⚠️ **GitHub.com Fallback** ⚠️