关于向Mybatis传递多个参数进行SQL查询的用法

当只向xxxMapper.xml文件中传递一个参数时,能够简单的用“_parameter”来接收xxxMapper.java传递进来的参数,并代入查询,好比说这样:java


(1)xxxMapper.java文件中这样定义:sql



List<String> selectAllAirportCode(Boolean mapping);app

1ide

List<String> selectAllAirportCode(Boolean mapping);this

(2)这时在对应的xxxMapper.xml文件中可使用“_parameter”来接收这个参数:spa



<select id="selectAllAirportCode" resultType="java.lang.String"orm

parameterType="java.lang.Boolean">xml

select DEPARTURE_AIRPORT from USR_AIR_LINE union select接口

ARRIVAL_AIRPORT from USR_AIR_LINEci

<if test="_parameter == true">

union select REL_DEPARTURE_AIRPORT from USR_AIR_LINE union

select

REL_ARRIVAL_AIRPORT from USR_AIR_LINE

</if>

</select>

1

2

3

4

5

6

7

8

9

10

<select id="selectAllAirportCode" resultType="java.lang.String"

    parameterType="java.lang.Boolean">

    select DEPARTURE_AIRPORT from USR_AIR_LINE union select

    ARRIVAL_AIRPORT from USR_AIR_LINE

    <if test="_parameter == true">

        union select REL_DEPARTURE_AIRPORT from USR_AIR_LINE union

        select

        REL_ARRIVAL_AIRPORT from USR_AIR_LINE

    </if>

</select>

可是,若是在xxxMapper.java文件中传递进来多个参数,就不能使用上面这种形式来接收参数,这时能够有两种方案来解决这个问题:


一 向xml文件中传递进去一个Map<String, Object>集合,而后xml文件中就能够正常使用Map集合中的各个参数了。具体实例以下:


(1)xxxMapper.java文件中这样定义:




List<Airline> findAll(Map<String, Object> parms);

1

List<Airline> findAll(Map<String, Object> parms);

(2)在用到上面定义的具体实现类中给Map传参:




public List<Airline> findAll(PageInfo page,Airline airline) {

HashMap<String,Object> params = new HashMap<String,Object>();

params.put("page", page);

params.put("airline", airline);

return airlineMapper.findAll(params);

}

1

2

3

4

5

6

7

public List<Airline> findAll(PageInfo page,Airline airline) {

        HashMap<String,Object> params = new HashMap<String,Object>();

        params.put("page", page);

        params.put("airline", airline);

        

        return airlineMapper.findAll(params);

    }

(3)此时对应的xxxMapper.xml文件使用“java.util.Map”来接收这个Map集合:




<sql id="sqlfileders">

<bind name="fileders"

value="#{'id':'ID','departureAirport':'DEPARTURE_AIRPORT','relDepartureAirport':'REL_DEPARTURE_AIRPORT','arrivalAirport':'ARRIVAL_AIRPORT','relArrivalAirport':'REL_ARRIVAL_AIRPORT','popStatus':'POP_STATUS','status':'STATUS','creator':'CREATOR','createTime':'CREATE_TIME'}" />

<bind name="javapropertys"

value="#{'ID':'id','DEPARTURE_AIRPORT':'departureAirport','REL_DEPARTURE_AIRPORT':'relDepartureAirport','ARRIVAL_AIRPORT':'arrivalAirport','REL_ARRIVAL_AIRPORT':'relArrivalAirport','POP_STATUS':'popStatus','STATUS':'status','CREATOR':'creator','CREATE_TIME':'createTime'}" />

</sql>

<select id="findAll" resultMap="BaseResultMap" parameterType="java.util.Map">

    <![CDATA[

      select x.* from (

      select z.*, rownum numbers from (

    ]]>

select

<include refid="Base_Column_List" />

from

USR_AIR_LINE

<where>

<if test="airline.departureAirport != null">

DEPARTURE_AIRPORT = #{airline.departureAirport}

</if>

<if test="airline.arrivalAirport != null">

and ARRIVAL_AIRPORT=#{airline.arrivalAirport}

</if>

<if test="airline.relDepartureAirport != null">

and REL_DEPARTURE_AIRPORT =

#{airline.relDepartureAirport}

</if>

<if test="airline.relArrivalAirport != null">

and REL_ARRIVAL_AIRPORT = #{airline.relArrivalAirport}

</if>

<if test="airline.popStatus != null">

and POP_STATUS = #{airline.popStatus}

</if>

<if test="airline.status != null">

and STATUS = #{airline.status}

</if>

</where>

<if test="page.sortName != null">

<include refid="sqlfileders" />

<bind name="orderfield" value="#this.fileders[page.sortName]" />

order by ${orderfield} ${page.sortOrder}

</if>

    <![CDATA[ ) z where rownum < ]]>

#{page.to}

    <![CDATA[ ) x where x.numbers >= ]]>

#{page.from}

</select>

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

<sql id="sqlfileders">

        <bind name="fileders"

            value="#{'id':'ID','departureAirport':'DEPARTURE_AIRPORT','relDepartureAirport':'REL_DEPARTURE_AIRPORT','arrivalAirport':'ARRIVAL_AIRPORT','relArrivalAirport':'REL_ARRIVAL_AIRPORT','popStatus':'POP_STATUS','status':'STATUS','creator':'CREATOR','createTime':'CREATE_TIME'}" />

        <bind name="javapropertys"

            value="#{'ID':'id','DEPARTURE_AIRPORT':'departureAirport','REL_DEPARTURE_AIRPORT':'relDepartureAirport','ARRIVAL_AIRPORT':'arrivalAirport','REL_ARRIVAL_AIRPORT':'relArrivalAirport','POP_STATUS':'popStatus','STATUS':'status','CREATOR':'creator','CREATE_TIME':'createTime'}" />

    </sql>

    <select id="findAll" resultMap="BaseResultMap" parameterType="java.util.Map">

    <![CDATA[

         select x.* from (

             select z.*, rownum numbers from (

    ]]>

        select

        <include refid="Base_Column_List" />

        from

        USR_AIR_LINE

        <where>

            <if test="airline.departureAirport != null">

                DEPARTURE_AIRPORT = #{airline.departureAirport}

            </if>

            <if test="airline.arrivalAirport != null">

                and ARRIVAL_AIRPORT=#{airline.arrivalAirport}

            </if>

            <if test="airline.relDepartureAirport != null">

                and REL_DEPARTURE_AIRPORT =

                #{airline.relDepartureAirport}

            </if>

            <if test="airline.relArrivalAirport != null">

                and REL_ARRIVAL_AIRPORT = #{airline.relArrivalAirport}

            </if>

            <if test="airline.popStatus != null">

                and POP_STATUS = #{airline.popStatus}

            </if>

            <if test="airline.status != null">

                and STATUS = #{airline.status}

            </if>

        </where>

        <if test="page.sortName != null">

            <include refid="sqlfileders" />

            <bind name="orderfield" value="#this.fileders[page.sortName]" />

            order by ${orderfield} ${page.sortOrder}

        </if>

    <![CDATA[ ) z where rownum < ]]>

        #{page.to}

    <![CDATA[ ) x where x.numbers >= ]]>

        #{page.from}

    </select>

注:上面的实例实现的是分页查询数据。咱们能够发现使用Map来传递参数这种形式并很差,由于这样使得在接口中只有一个Map参数,其余人进行维护的时候并不清楚到底须要向这个Map里面传递什么参数进去




二 经过给参数添加@Param注解来解决问题:


(1)给xxxMapper.java文件的方法中的参数添加@Param注解,这个注解中的值对应xml文件中使用到的参数名称:




Airline selectEffectiveAirline(

@Param("departureAirport") String departureAirport,

@Param("arrivalAirport") String arrivalAirport,

@Param("status") BigDecimal status);

1

2

3

4

Airline selectEffectiveAirline(

            @Param("departureAirport") String departureAirport,

            @Param("arrivalAirport") String arrivalAirport,

            @Param("status") BigDecimal status);

(2)此时xxxMapper.xml文件中对应的地方就能够正常使用在@Param注解中对应的值了:




<select id="selectEffectiveAirline" resultMap="BaseResultMap">

select

<include refid="Base_Column_List" />

from

USR_AIR_LINE

<where>

<if test="departureAirport != null">

DEPARTURE_AIRPORT = #{departureAirport}

</if>

<if test="arrivalAirport != null">

and ARRIVAL_AIRPORT=#{arrivalAirport}

</if>

<if test="status != null">

and STATUS = #{status}

</if>

</where>

</select>

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

<select id="selectEffectiveAirline" resultMap="BaseResultMap">

        select

        <include refid="Base_Column_List" />

        from

        USR_AIR_LINE

        <where>

            <if test="departureAirport != null">

                DEPARTURE_AIRPORT = #{departureAirport}

            </if>

            <if test="arrivalAirport != null">

                and ARRIVAL_AIRPORT=#{arrivalAirport}

            </if>

            <if test="status != null">

                and STATUS = #{status}

            </if>

        </where>

    </select>

注:须要注意的是if条件判断中的参数和在SQL语句中写法是不同的,if判断中的变量是没有添加#{ }的






Mybatis

版权声明:原创做品,容许转载,转载时请务必以超连接形式标明文章 原始出处 、做者信息和本声明。不然将追究法律责任。

转载请注明来源:关于向Mybatis传递多个参数进行SQL查询的用法 - zifangsky的我的博客

相关文章
相关标签/搜索