其他分享
首页 > 其他分享> > mybatis动态设置表名

mybatis动态设置表名

作者:互联网

mybatis动态设置表名

mapper接口

List<User> selectall(@Param("tablename") String tablename);

映射文件

<select id="selectall" resultType="User">
  select * from ${tablename};
</select>

注意:表名是不带单引号的,所以不可以使用#{},只能使用${}

标签:selectall,tablename,设置,表名,mybatis,动态
来源: https://www.cnblogs.com/new228666/p/16415583.html