findByCategoryTypeIn()方法
来源:4-2 买家类目-dao(下)
慕粉1462372119
2017-12-21
findByCategoryTypeIn()方法传进去一个list,如果list里面的数有重复的,这个方法可以去重,请问这个方法是spring boot自带的吗,这个方法的具体实现怎么看?
这个方法我看视频时你还说要注意写法,请问相关的相关资料怎么去网上搜索学习?
写回答
2回答
-
请问相关的相关资料怎么去网上搜索学习?
搜"jpa", "springboot jpa", 慕课网有相关视频
012017-12-22 -
夏析
2017-12-21
findByCategoryTypeIn
是规定的写法,个人理解从 记录里找CategoryType匹配的
List<ProductCategory> productCategoryList = categoryService.findByCategoryTypeIn(Arrays.asList(1,2, 2, 2, 4));
Hibernate:
select productcat0_.category_id as category1_0_, productcat0_.category_name as category2_0_, productcat0_.category_type as category3_0_ from product_category productcat0_ where productcat0_.category_type in (? , ? , ? , ? , ?)
20
相似问题