日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

T.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.Reflectio

發布時間:2023/12/10 编程问答 34 豆豆
生活随笔 收集整理的這篇文章主要介紹了 T.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.Reflectio 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

There is no getter for property named '*' in 'class java.lang.String',此錯誤之所以出現,是因為mybatis在對parameterType="String"的sql語句做了限制,假如你使用<when test="username != null">這樣的條件判斷時,就會出現該錯誤

報信息如下

.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'provName' in 'class java.lang.String' at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:77) at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446) at com.sun.proxy.$Proxy97.selectList(Unknown Source) at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230) at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137) at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75) at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59) at com.sun.proxy.$Proxy125.getSchoolInfoByProvName(Unknown Source) at cn.ls.tcis.service.impl.barnswallow.BarnSwallowInfoServiceImpl.getDistributeAge(BarnSwallowInfoServiceImpl.java:243) at cn.ls.tcis.controller.pc.StatisticController.getDistributeAge(StatisticController.java:94) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:189) at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:102) at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:800) at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1038) at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) at org.springframework.web.servl

?

mapper接口

parameterType="String",這一點是必須得,參數類型必須是string。
該sql對應的mapper class中對應的方法為

List<SchoolInfoDO> getSchoolInfoByProvName(String provName);也就是說,傳遞的參數名為provName,正常情況下,這樣的配置合情合理。 <when test="provName != null">,你有一個對應的test判斷語句,也可能是if。 那么這個時候,項目運行該查詢語句時,就會拋出There is no getter for property named 'username' in 'class java.lang.String'錯誤!?

解決辦法很簡單,你只需要把?<when test="provName != null">修改為?<when test="_parameter!= null">就好了

修改完以后

解決方法

<if test="_parameter !=null"></if>

?

?

總結

以上是生活随笔為你收集整理的T.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.Reflectio的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。