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给我

0
2
廖师兄
回复
慕工程2797237
采纳答案吧
2019-03-24
共2条回复

Spring Boot双版本(1.5/2.1) 打造企业级微信点餐系统

从0到1开发中小型企业级Java应用,并学会迭代重构技巧

6410 学习 · 5247 问题

查看课程