其他分享
首页 > 其他分享> > Mybatis - 值传递的4种方式

Mybatis - 值传递的4种方式

作者:互联网

方法一:不需要写parametertype参数

public List<xx> getxxList(String args1,String args2);
<select id="getxxList" resultType="xx">
    select * from xx where name=#{0} and password=#{1}
</select>

#{index}是第几个就用第几个的索引,索引从0开始

 

标签:第几个,方式,传递,索引,xx,Mybatis,args1,String
来源: https://www.cnblogs.com/leviAckman/p/15658383.html