起作用的分页,我没完全按照你的写。AdMapper.xml里面写的一样<select id="selectByPage" resultType="Ad">
select <include refid="insert_columns" />
from ad
<where>
<if test="title != null and title != ''">
title like '%' #{title} '%'
</if>
</where>
order by weigth desc,id
</select>