Error starting ApplicationContext.
来源:4-2 买家类目-dao(下)
慕工程2797237
2019-03-22
Error starting ApplicationContext. To display the conditions report re-run your application with ‘debug’ enabled.
2019-03-22 15:42:15.399 ERROR 10300 — [ main] o.s.boot.SpringApplication : Application run failed
@Test
public void findByProductTypeInTest(){
List<Integer> list =Arrays.asList(2,3,4,5,6);
List<ProductCategory> result = repository.findByCategory_typeIn(list);
Assert.assertNotEquals(0,result.size());
}
}
import com.example.demo.dataobject.ProductCategory;
import org.springframework.data.jpa.repository.JpaRepository;
import java.util.List;
/* 自定义的 XxxxRepository 需要继承 JpaRepository,这样的 XxxxRepository 接口就具备了通用的数据访问控制层的能力。 */
public interface ProductCategoryRepository extends JpaRepository<ProductCategory,Integer> {
/* Hibernate 使用CategoryType 来查询一组数据
需要在接口里定义一个接口,注意此接口必须符合一定的格式 */
List<ProductCategory> findByCategory_typeIn(List<Integer> category_typeList);
}
写回答
1回答
-
廖师兄
2019-03-23
错误信息太少,你把代码push到git给我
022019-03-24
相似问题