威武枫叶

文章
4
资源
0
加入时间
2年10月21天

MyBatis学习笔记(四)——两种取值符号以及ParameterType为简单、对象、嵌套对象类型.#{}、${}的区别

输入参数:parameterType1.类型为 简单类型(8个基本类型+String).#{}、${}的区别a..#{任意值}.${value} ,其中的标识符只能是valueb.#{}自动给String类型加上’’ (自动类型转换)${} 原样输出,但是适合于 动态排序(动态字段)select stuno,stuname,stuage from student where stuname = #{value}select stuno,stuname,stuage from stu