bug总结

mybatis

Error querying database. Cause: java.lang.IllegalArgumentException: invalid comparison: java.util.Date and java.lang.String
Cause: java.lang.IllegalArgumentException: invalid comparison: java.util.Date and java.lang.String
时间类型判空值时只需判断null 无需判断空字符串

<if test="date !=null">

父页面引入子页面报错

Unknown custom element: <子页签名字> - did you register the component correctly? For recursive components, make sure to provide the “name” option.

//首先检查写法 关键字是否写错 引入是否写错
import 子页面id from " from "@/components/文件夹…/子页面.vue";
components:{子页签名字}

如果都没错 其他页面引入还是正常的情况
原因为:循环调用组件时,组件比vue实例后创建,官方文档里写组件必须先于实例化引入,所以说组件没有正确的引入。
j解决方案 vue实例化前全局引入组件 main.js文件引入

import 子页面标签id from '@/components/文件夹……'
Vue.component('子页面标签id', 子页面标签id)

Feign降级类未注入bean

Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class 降级类
found for feign client feign调用类

启动时为扫描到降级服务类
src/main/resources/META-INF/spring 下添加 org.springframework.boot.autoconfigure.AutoConfiguration.imports 文件
里面添加降级类路径
bug总结_第1张图片
在网上也看的了另一个解决方法 在这个文件下增加扫描路径
resources/META-INF/spring.factories

总结

这个错误其实就是扫描不到降级bean造成的想办法扫描到就可以了

你可能感兴趣的:(bug)