9-4 店铺列表页后端开发

本文详细介绍了店铺列表页的后端开发过程,包括Dao层的查询操作,service层的接口与实现,以及controller层的控制器逻辑。通过示例展示了如何根据父类别查询店铺,并提供了相关测试用例。
摘要由CSDN通过智能技术生成

一、Dao层

查询某类商品下的商品

1、shopDao.xml

<select id="queryShopCount" resultType="int">
		SELECT
		count(*)
		FROM
		tb_shop s,
		tb_area a,
		tb_shop_category sc
		<where>
			<if
				test="shopCondition.shopCategory!=null and 
			shopCondition.shopCategory.shopCategoryId!=null">
				and s.shop_category_id =
				#{shopCondition.shopCategory.shopCategoryId}
			</if>
            <!-- 新补充的部分 -->
			<if
				test="shopCondition.shopCategory!=null 
			and shopCondition.shopCategory.parent!=null 
			and shopCondition.shopCategory.parent.shopCategoryId!=null">
				and s.shop_category_id in (select shop_category_id from
				tb_shop_category
				WHERE parent_id =
				#{shopCondition.shopCategory.parent.shopCategoryId})
			</if>
			<if
				test="shopCondition.area!=null and 
			shopCondition.area.areaId!=null">
				and s.area_id = #{shopCondition.area.areaId}
			</if>
			<if test="shopCondition.shopName!=null">
				and s.shop_name like '%${shopCondition.shopName}%'
			</if>
			<if test="shopCondition.enableStatus!=null">
				and s.enable_status = #{shopCondition.enableStatus}
			</if>
			<if
				test="shopCondition.owner!=null and shopCondition.owner.userId!=null">
				and s.owner_id = #{shopCondition.owner.userId}
			</if>
			AND
			s.area_id=a.area_id
			AND
			s.shop_category_id = sc.shop_category_id
		</where>
	</select>

2、数据库

tb_shop

 tb_shop_category

 3、测试


                
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值