@Test
@Transactional
public void save() throws Exception {
ProductCategory productCategory = new ProductCategory("韩国农协", 3);
ProductCategory result = categoryService.save(productCategory);
Assert.assertNotNull(result);
}
但是去掉@Transactional就可以