赞
踩
mybatis的占位符有两种:#{}、${}。
共同点:
不同点:
应用场景:
普通的条件参数占位
可应用在条件参数上
@select("select * from tb_test where id=#{id}")
public Test findById(int id);
应用场景:
可以用在jdbc不支持占位符的地方,比如:表名、排序等等。
@select("select * from tb_${tableName} where id=#{id}")
public Test findById(String tableName,int id);
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。