欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Mybatis中的StatementType

程序员文章站 2022-04-22 10:32:55
...

原文:http://luoyu-ds.iteye.com/blog/1517607


要实现动态传入表名、列名,需要做如下修改
添加属性statementType=”STATEMENT”
同时sql里的属有变量取值都改成${xxxx},而不是#{xxx}

 <selete id="dbCode" parameterType="java.util.Map" statementType="STATEMENT">  
    select * from ${table}  where name = '${userName}'  and sex = ${sex}
</selete> 
  1. statementType:STATEMENT(非预编译),PREPARED(预编译)或CALLABLE中的任意一个,这就告诉 MyBatis 分别使用Statement,PreparedStatement或者CallableStatement。默认:PREPARED。这里显然不能使用预编译,要改成非预编译。
  2. xxxx:将传入的数据直接显示生成在sql中,对于字符串数据,需要手动加上引号。
  1. 将传入的数据直接显示生成在sql中,对于字符串数据,需要手动加上引号。
 <selete id="find" parameterType="java.util.Map" statementType="STATEMENT">  
    select * from User where name = '${userName}'
</selete>