@param注解用法解析

@Param注解单一属性

 

    @Select({"select * from country where countryname=#{countryname} and countrycode=#{countrycode}"})
    Country selectByNameAndCode(@Param("countryname") String countryname,@Param("countrycode") String countrycode);


    @Select({"select * from country where countryname=#{param1} and countrycode=#{param2}"})
    Country selectByNameAndCode(@Param("countryname") String countryname,@Param("countrycode") String countrycode);

//不使用注解
    @Select({"select * from country where countryname=#{arg0} and countrycode=#{arg1}"})
    Country selectByNameAndCode( String countryname, String countrycode);

    @Select({"select * from country where countryname=#{param1} and countrycode=#{param2}"})
    Country selectByNameAndCode( String countryname, String countrycode);

配置该注解后,Mybatis会自动将参数封装成Map类型,@param注解值会作为Map的key

在xml文件中或注解方式里都可以使用#{param1},#{param2},#{countryname},#{countrycode}方法。当接口函数中只有一个参数(基本数据类型)时会直接使用该参数,不管这个参数叫什么。

例如

    @Delete({"delete from country where id=#{abc} "})
    int deleteById(int id);

abc与id不一样一样可以正常使用 。

@Param注解javaBean对象

    @Insert({"insert into country(countryname,countrycode) values(#{country.countryName},#{country.countryCode})"})
    int insertOne(@Param("country") Country country);

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值