1. 程式人生 > >SSM框架報錯分析(一)——There is no getter for property named 'XXX' in 'class java.lang.String'

SSM框架報錯分析(一)——There is no getter for property named 'XXX' in 'class java.lang.String'

一、發現問題

<select id="queryStudentByNum" resultType="student" parameterType="string">  
select num,name,phone from student  
<where> 
<if test = " num!=null and num!='' ">
AND num = #{num}
</if>
</where>
</select> 

Mybatis查詢傳入一個字串傳引數,報There is no getter for property named 'num' in 'class java.lang.String'。


二、解決問題

<select id="queryStudentByNum" resultType="student" parameterType="string"> select num,name,phone from student <where> <if test = " _parameter!=null and_parameter!='' "> AND num = #{_parameter} </if> </where> </select> 無論引數名,都要改成"_parameter"。 三、原因分析 Mybatis預設採用ONGL解析引數,所以會自動採用物件樹的形式取string.num值,引起報錯。也可以public List methodName(@Param(value="num") String num)
的方法說明引數值