异常处理
且随疾风前行
我不是代码的生产者,我只是一名搬运工
展开
-
Invalid bound statement (not found)我的case
最后,我大概判断应该还是mapper-locations问题,因为反复检查过之后,我的代码是用了generator去生成的,我配置了一个generatorConfig.xml,然后又配置了一个mybaties-generate.properties,但是,这个properties原本是别人打算拿来当application.properties启动配置的,而我直接改成了单独拿来生成代码的配置文件。将两个参数移回去yml里之后,便能读成功。原创 2022-11-16 22:36:16 · 301 阅读 · 0 评论 -
Command failed with error 16604: 'geoNear command failed: { ok: 0.0, errmsg: "Can't parse filter ...
异常:上次写好了geoNear之后,一直测试都没问题。然而,今天放上测试线之后,居然报了这样的错误,令人震惊。om.mongodb.MongoCommandException: Command failed with error 16604: 'geoNear command failed: { ok: 0.0, errmsg: "Can't parse fi...原创 2019-11-22 09:19:06 · 1873 阅读 · 0 评论 -
The 'cursor' option is required, except for aggregate with the explain argument 错误处理
背景:最近开始做mongoDB,公司原有的mysql数据库需要在短期内转库为mongoDB,在重构代码过程中,旧有的一些业务逻辑就需要改动了。比较棘手的,就是地理位置数据做排序,这一点上,我打算用mongoDB的geoNear经纬度查询功能来实现。经过:在mongoDB中,我写了一段nosql,可以按输入的定点位置以经纬度排序:db.getCollection("proje...原创 2019-11-13 10:48:00 · 6199 阅读 · 1 评论 -
前端 Bootstrap's dropdowns require Popper.js 异常
报错情景:自己写了个简单的Springboot+mybatis小demo,前端用的是thymeleaf标签,UI用的是bootstrap框架(4.3.1)然后,写个简单的dropdown按钮都无法实现,还是从官网搬来的 <div class="container"> <div class="dropdown"> ...原创 2019-07-09 12:01:30 · 13660 阅读 · 5 评论 -
IDEA下mybatis-generator-maven-plugin自动生成报错
报错提示:[ERROR] Failed to execute goal org.mybatis.generator:mybatis-generator-maven-plugin:1.3.7:generate (default-cli) on project bookshopping: Execution default-cli of goal org.mybatis.generator:myb...原创 2019-06-19 17:20:54 · 13289 阅读 · 1 评论 -
EasyUi Datagrid Reload的一些小问题
EasyUI Datagrid 控件 reload方法一些小问题$('#table').datagrid('reload');令table再次加载,需要注意queryParam的参数,reload将以初始化datagrid时的参数重新加载数据并不会刷新datagrid提交后台时的queryParam参数。所以,初始化datagrid最好与刷新方法区分开。...原创 2018-08-09 17:28:00 · 6259 阅读 · 0 评论 -
Spring异常:Annotation-specified bean name.. for bean class ...
时间:2018-02-06异常:Annotation-specified bean name 'DistrictServiceImpl' for bean class [com.qiu.service.impl.DoctorDetailServiceImpl] conflicts with existing, non-compatible bean definition of same...原创 2018-02-06 15:20:07 · 147723 阅读 · 5 评论 -
mybatis异常:Invalid bound statement (not found)
时间:2017-12-21异常:Invalid bound statement (not found)情景:添加一个语句到mapper.xml中,部署项目后直接报错了,所有的mapper方法都不可用原因:在网上找了很多的贴子、博客,大多说的原因无非是配置的XML路径对不上、mapper映射的dao没有写入对应的方法、sql语法有问题、存在中文影响等等。一个个排查过去还是不能解决原创 2017-12-21 14:20:55 · 118723 阅读 · 3 评论 -
Spring异常:Injection of autowired dependencies failed
时间:2017-12-27异常:Injection of autowired dependencies failed情景:本项目是Spring+Struts2+Mybatis框架,我在生成几个Mapper后,觉得多余又给删除了,结果删除之后,部署项目就本地服务器就一直报错,最根本的异常是Injection of autowired dependencies failed,我反复检查原创 2017-12-27 13:55:18 · 1777 阅读 · 0 评论 -
JDBC连接Oracle报错ORA-12505
JDBC连接Oracle报错ORA-12505原创 2017-12-19 12:15:15 · 4882 阅读 · 3 评论