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