Parameter package There is no getter for property named & #39; XXX & #39; in & #39; class java. lang. String & #39;, mybatisgetter

Source: Internet
Author: User

Parameter package There is no getter for property named 'xxx' in 'class java. lang. string' in mybatisgetter

I. Problems Found

<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>
When you pass in a String to the Mybatis query, There is no getter for property named 'num' in 'class java. lang. string' is reported '.


Ii. Solving Problems

<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>
Change the parameter name to "_ parameter ".


Iii. Cause Analysis

Mybatis uses the ONGL resolution parameter by default, so the string. num value is automatically obtained in the form of an object tree, causing an error. You can also use the public List methodName (@ Param (value = "num") String num) method to describe the parameter value.

 

Refer to blog:

Http://blog.sina.com.cn/s/blog_86e49b8f010191hw.html

Http://txin0814.iteye.com/blog/1533645

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.