There is no getter-named xxx ' in ' Class Java.lang.xxx '

Source: Internet
Author: User

In xxxmapper.xml we use SQL fragments to improve the reusability of SQL code, which is often the case when newbies pass in parameters:

There is no getter-named xxx ' in ' Class Java.lang.xxx '

① appearance Reason: We entity class has getter method, why MyBatis can't recognize it, the original mybatis by default Ongl parsing parameters, so will automatically use the object tree form to take java.lang.xxx.xxx value, so caused error.

② Workaround: 1) Change the incoming parameter to _parameter so you can, for example:

<sql id= "Wherecadtion" >
<if test= "_parameter" >
and Area_id=#{_parameter}
</if>
</sql>
<sql id= "Base_column_list" >
Id,dept_name,user_name,job_name,days,entry_core,area_id,area_name
</sql>
<select id= "findallcarentry" parametertype= "int" resultmap= "Resultmap" >
Select <include refid= "Base_column_list"/> from Vie_car_entry_top
<where>
<include refid= "Wherecadtion"/>
</where>
</select>

2) Specify the parameter value for the interface parameter name. For example:

Public List MethodName (@Param (value= "TJ") String TJ);

There is no getter-named xxx ' in ' Class Java.lang.xxx '

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.