Data JPA测试类可能会注入一个专为测试设计的TestEntityManagerbean以替换标准的JPA EntityManager。如果想在@DataJpaTests外使用TestEntityManager,你可以使用@AutoConfigureTestEntityManager注解。如果需要,JdbcTemplate也是可用的。下面的例子展示了使用中的@DataJpaTest注解:
import org.junit.*;
import org.junit.runner.*;
import org.springframework.boot.test.autoconfigure.orm.jpa.*;
import static org.assertj.core.api.Assertions.*;
@RunWith(SpringRunner.class)
@DataJpaTest
public class ExampleRepositoryTests {
@Autowired
private TestEntityManager entityManager;
@Autowired
private UserRepository repository;
@Test
public void testExample() throws Exception {
this.entityManager.persist(new User("sboot", "1234"));
User user = this.repository.findByUsername("sboot");
assertThat(user.getUsername()).isEqualTo("sboot");
assertThat(user.getVin()).isEqualTo("1234");
}
}