测试通过了,但是传不到数据库,刷新没有值
@Test
@Transactional
public void saveTest(){
ProductCategory productCategory = new ProductCategory("女生最爱",3);
ProductCategory result = repository.save(productCategory);
Assert.assertNotNull(result);
}
Hibernate: insert into product_category (category_name, category_type) values (?, ?),最后是两个问号,不是女生最爱和3