Mybatis框架中:Check syntax #{property|(expression), var1=value1, var2=value2, ...}
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mybatis框架中:Check syntax #{property|(expression), var1=value1, var2=value2, ...}相关的知识,希望对你有一定的参考价值。
异常代码:
@Insert("insert into t_member(m_id,m_name,m_phone,m_level,m_card_no) values(#{m_id},#{m_name),#{m_phone},#{m_level},#{m_card_no})")
在使用Mybatis框架的同时,我们要注意很多细节,不能因为粗心而导致程序的单元测试不能得到正确的测试效果,从而耽误我们对程序代码的继续编写
上述代码的错误其实很明显,但是我们有时候会出现一种名为:“睁眼瞎”的错误,及即使很明显,但是我们就是发现不了,从而去寻找更复杂的方法来寻求答案,从而耽误编写代码的速度与效率
上述mybatis 框架注解代码的错误在于:#{m_name) 的后面那个括号与#{}不匹配,这是我自己经常会犯的一种愚蠢错误,
从而会产生Check syntax #{property|(expression), var1=value1, var2=value2, ...} 异常
以上是关于Mybatis框架中:Check syntax #{property|(expression), var1=value1, var2=value2, ...}的主要内容,如果未能解决你的问题,请参考以下文章
解决——》ERROR 1064 (42000)You have an error in your SQL syntax; check the manual that corresponds
[Err] 1064 - You have an error in your SQL syntax; check the manual that cor错误时
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual ...
报错:MySQL check the manual that corresponds to your MySQL server version for the right syntax
[Err] 1064 - You have an error in your SQL syntax; check the manual that corresponds...
MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds