淘淘商城第五天笔记(14)

时间:2025-04-04

传智播客Java学院传智.入云龙

5.3 Service层

返回结果:ItemCatResult

参数:没有

业务逻辑:根据parentid查询子节点列表,并递归调用。

@Service

publicclass ItemCatServiceImpl implements ItemCatService {

@Autowired

private TbItemCatMapper itemCatMapper;

@Override

public ItemCatResult getItemCatList() {

//调用递归方法查询商品分类列表

List catList = getItemCatList(0l);

//返回结果

ItemCatResult result = new ItemCatResult();

result.setData(catList);

return result;

}

private List getItemCatList(Long parentId) {

//根据parentId查询列表

TbItemCatExample example = new TbItemCatExample();

Criteria criteria = example.createCriteria();

criteria.andParentIdEqualTo(parentId);

//执行查询

List<TbItemCat>list = itemCatMapper.selectByExample(example);

List resultList = new ArrayList<>();

for (TbItemCat tbItemCat : list) {

//如果是父节点

if (tbItemCat.getIsParent()) {

CatNode node = new CatNode();

node.setUrl("/products/"+tbItemCat.getId()+".html");

//如果当前节点为第一级节点

if (tbItemCat.getParentId() == 0) {

node.setName("<a

href='/products/"+tbItemCat.getId()+".html'>"+tbItemCat.getName()+"</a>");

} else {

node.setName(tbItemCat.getName());

}

node.setItems(getItemCatList(tbItemCat.getId()));

//把node添加到列表

resultList.add(node);

淘淘商城第五天笔记(14).doc 将本文的Word文档下载到电脑

精彩图片

热门精选

大家正在看

× 游客快捷下载通道(下载后可以自由复制和排版)

限时特价:7 元/份 原价:20元

支付方式:

开通VIP包月会员 特价:29元/月

注:下载文档有可能“只有目录或者内容不全”等情况,请下载之前注意辨别,如果您已付费且无法下载或内容有问题,请联系我们协助你处理。
微信:fanwen365 QQ:370150219