1. 区分 #{} 和 ${}的不同应用场景 1)#{} 会生成预编译SQL,会正确的处理数据的类型,而${}仅仅是文本替换.对于SQL: select * from student where xCode = ‘S123456’:如果使用#{}那么生成的SQL为:select * from student where xCode = ? 传的值为’S123456’:如果使用${}那么生成的SQL为:select * from student where xCode = S123456如果xCo…