Mybatis Plus 可以通过使用 TableNameParser
接口来实现动态表名。你需要自定义一个实现了 TableNameParser
接口的类,并在 Mybatis Plus 的配置中将其注册为自定义的 TableNameParser
实例。然后,你就可以在你的 mapper 接口中使用 @TableName
注解来动态指定表名了。
例如:
@Mapperpublic interface UserMapper { @Select("SELECT * FROM ${tableName} WHERE id = #{id}") User findById(@Param("tableName") String tableName, @Param("id") Long id);}
在调用 findById
方法时,你可以传入动态的表名,Mybatis Plus 会将表名替换到 SQL 语句中并执行。
需要注意的是,在使用动态表名时,你需要自己确保表名是合法的并且拼写正确,Mybatis Plus 不会做任何校验。
来源地址:https://blog.csdn.net/weixin_35752645/article/details/129082690