标签:$

  • MyBatis 中 #{}和 ${}的区别是什么?

    {}是预编译处理,${}是字符替换。在使用 {}时,MyBatis会将SQL中的 {}替换成?,配合PreparedStatement的set方法赋值,这样可以有效的防止S