码迷,mamicode.com
首页 > 其他好文 > 详细

ibatis 参数之 String

时间:2015-06-18 11:13:42      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:

<select id="query_cust_name" resultClass="_custForm" parameterClass="String">
        select cust_id custId,cust_name customerName from k_cust
        
             where  cust_name=#value#
        
    </select>

当参数为单个值的时候,用这个配置文件一直得不到结果,后来发现原来是参数类型错误,String这种事识别不了的。只有

parameterClass="string" 与 parameterClass="java.lang.String" 一个是ibatis的写法 一个是java的写法。改掉之后就正常了记录下来,给别人节约下时间。

ibatis 参数之 String

标签:

原文地址:http://www.cnblogs.com/EncryptingLife/p/4585225.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!