[DB][mybatis]MyBatis mapper檔案中的變數引用方式#{}與${}的差別

來源:互聯網
上載者:User

MyBatis mapper檔案中的變數引用方式#{}與${}的差別

預設情況下,使用#{}文法,MyBatis會產生PreparedStatement語句中,並且安全的設定PreparedStatement參數,這個過程中MyBatis會進行必要的安全檢查和轉義。
樣本1:
執行SQL:Select * from emp where name = #{employeeName}
參數:employeeName=>Smith
解析後執行的SQL:Select * from emp where name = ?
執行SQL:Select * from emp where name = ${employeeName}
參數:employeeName傳入值為:Smith
解析後執行的SQL:Select * from emp where name =Smith

綜上所述、${}方式會引發SQL注入的問題、同時也會影響SQL語句的先行編譯,所以從安全性和效能的角度出發,能使用#{}的情況下就不要使用${}

但是${}在什麼情況下使用呢?

有時候可能需要直接插入一個不做任何修改的字串到SQL語句中。這時候應該使用${}文法。

比如,動態SQL中的欄位名,如:ORDER BY ${columnName}

注意:當使用${}參數作為欄位名或表名時、需指定statementType為“STATEMENT”,如:

<select id="queryMetaList" resultType="Map" statementType="STATEMENT">Select * from emp where name = ${employeeName} ORDER BY ${columnName}</select> 




相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.