java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > Mybatis查询返回两个或多个参数

Mybatis查询返回两个或多个参数问题

作者:居居很有爱

这篇文章主要介绍了Mybatis查询返回两个或多个参数问题,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教

mybatis查询返回两个或多个参数

xml中的resultType设为map:

<select id="selectWeekData"  resultType="map">
        SELECT count,date FROM yqfk_qjsq
<select>

dao中的返回设置为:List<Map<Object,Object>>

public List<Map<Object,Object>> selectWeekData();

遍历查询出来的结果为:

{date=2022-04-14, count=1}
{date=2022-04-11, count=2}
{date=2022-04-05, count=2}

这只是其中一个方法,

另一种方法就是重新定义一个新的类,在里面只存放要返回的字段。

这里就不写了!

当mybatis有多个参数时并增加判断的写法

当mybatis有多个参数时,mapper.java文件即dao层必须写上@Param注解

List<AddressBean> listAddressByDate(@Param("startDate")String startDate, @Param("endDate")String endDate);

然后在xml文件里用where if判断是否为空,注意if的test判断里不要加#{  }

<select id="listAddressByDate" resultType="cn.zwkj.beans.AddressBean" parameterType="String">
        select biaozhunmingcheng,hanyuduyin,dzzzcode,dengjishijian,id from t_placecommon
        <where>
            <if test="startDate!=null and startDate != '' ">
                and to_char(dengjishijian,'yyyy-MM-dd') <![CDATA[>=]]> #{startDate}
            </if>
            <if test="endDate!=null and endDate != '' ">
                and to_char(dengjishijian,'yyyy-MM-dd') <![CDATA[<=]]> #{endDate}
            </if>
        </where>                 
</select>

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:
阅读全文