MyBatis
清欢ysy
技术改变世界
展开
-
Invalid bound statement (not found):
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)原创 2019-05-04 14:59:02 · 2115 阅读 · 0 评论 -
mybatisd的mapper.xml文件自动扫描注入的方法
1、配置好项目后在applicationContext-dao.xml中的 session 工厂配置里加入 mapperLocations 项 即可自动扫描目录下所有xml映射文件<!-- spring和MyBatis完美整合 --> <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessi...原创 2019-05-04 15:31:11 · 3728 阅读 · 0 评论 -
Result Maps collection already contains value for...BaseResultMap
异常信息mybatis出现Result Maps collection already contains value for…BaseResultMap的错误,场景描述异常原因既有可能是generatorSqlmapCustom逆向工程热的货。假如使用generatorS...原创 2019-05-03 14:29:09 · 32718 阅读 · 18 评论 -
nested exception is org.apache.ibatis.reflection.RefThere is no getter for property named '?' in '?'
异常信息HTTP Status 500 - Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no gette...原创 2019-05-04 16:07:38 · 289 阅读 · 0 评论 -
Mybatis面试看这篇就够了
#{}和KaTeX parse error: Expected 'EOF', got '#' at position 11: {}的区别是什么?#̲{}是预编译处理,{}是字符串替换。Mybatis 在处理#{}时,会将 sql 中的#{}替换为?号,调用 PreparedStatement 的 set方法来赋值;Mybatis 在处理时,就是把{}时,就是把时,就是把{}替换成变量的值...原创 2019-05-13 18:27:48 · 376 阅读 · 0 评论 -
Cannot find class: com.github.pagehelper.PageIntercepto
Caused by: java.lang.ClassNotFoundException: Cannot find class: com.github.pagehelper.PageIntercepto原创 2019-05-14 16:26:35 · 3555 阅读 · 0 评论