spring boot 2 JPA相关的代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SpringDataJpaApplicationTests.java 351B

1234567891011121314151617
  1. package ltass.staudy.springdatajpa;
  2. import org.junit.Test;
  3. import org.junit.runner.RunWith;
  4. import org.springframework.boot.test.context.SpringBootTest;
  5. import org.springframework.test.context.junit4.SpringRunner;
  6. @RunWith(SpringRunner.class)
  7. @SpringBootTest
  8. public class SpringDataJpaApplicationTests {
  9. @Test
  10. public void contextLoads() {
  11. }
  12. }