测试通过不了
来源:4-1 买家类目-dao(上)
夜深千丈灯
2017-08-16
@RunWith(SpringRunner.class)
@SpringBootTest
public class ProductCategoryRepositoryTest {
@Autowired
private ProductCategoryRepository repository;
@Test
public void findOneTest(){
ProductCategory productCategory=repository.findOne(1);
System.out.println(productCategory.toString());
}i
}
测试通过不了
提示:95 INFO 15352 --- [ Thread-3] o.s.w.c.s.GenericWebApplicationContext : Closing org.springframework.web.context.support.GenericWebApplicationContext@27f981c6: startup date [Wed Aug 16 22:17:29 CST 2017]; root of context hierarchy
2017-08-16 22:17:37.501 INFO 15352 --- [ Thread-3] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
Process finished with exit code -1
3回答
-
Jason8
2018-03-16
@夜深千丈灯 请问你的问题解决了吗?我现在也遇到同样的问题,一链接数据库并进行增删改查操作 就会报这个错
00 -
夜深千丈灯
提问者
2017-08-17
实体类、toSing(),public interface ProductCategoryRepository extends JpaRepository<ProductCategory,Integer>都写了
而且保证没有错误,不知为什么会出现这个错误042017-08-17 -
廖师兄
2017-08-17
截图看看
00
相似问题