
Bug?是改不完的!
Bug,Bug,Bug
掌控-AK
让程序跑一会......
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Cannot find current proxy: Set 'exposeProxy' property on Advised to 'true' to make it available
springboot 解决同层不能调用的问题问题环境:spring+springboot+mybatis问题说明:解决同一个类下方法之间不能互相调用的问题错误信息解决方法1.添加注解2.添加依赖...原创 2019-01-24 17:29:25 · 5530 阅读 · 0 评论 -
dubbo请检查注册表访问列表问题
dobbo请检查注册表访问列表问题检查配置文件中的IP的值配置的是否正确在配置application.properties文件如:dubbo.mainzookeeper=zookeeper://IP:端口号dubbo.a.zookeeper=zookeeper://IP:端口号dubbo.b.zookeeper=zookeeper://IP:端口号dubbo.c.zookeeper=z...原创 2019-07-01 10:36:45 · 659 阅读 · 0 评论 -
Error creating bean with name 'dyCommonServiceImpl' defined in fileXXX
Error creating bean with name ‘dyCommonServiceImpl’ defined in fileXXX一般为项目的规范问题,由于提供的接口以 getXXX 开头,而且接口没有返回值,从而出现此种异常.把get改为insert或update或insertOrUpdate的写法试试(直接去掉一般也木有问题的)....原创 2019-07-01 10:42:37 · 3467 阅读 · 0 评论 -
Orcle, sql无效字符问题
sql无效字符问题如:update A_EXAMPLE_TABLE set NAME= #{name}, where SETTLE_SN = #{settleSn};改为:update A_EXAMPLE_TABLE set NAME= #{name}, where SETTLE_SN = #{settleSn}注:很可耻的去掉了一个分号…...原创 2019-07-01 11:22:00 · 557 阅读 · 0 评论 -
Type handler was null on parameter mapping for property '__frch_item_0'. It was either not specified
Type handler was null on parameter mapping for property ‘__frch_item_0’. It was either not specified andor could not be found for the javaType jdbcType combination specifi1.Mapper.java 与Mapper.xml 的...原创 2019-07-01 11:27:22 · 26886 阅读 · 3 评论 -
无效索引类型
无效索引类型1.时间格式问题2.没有加jdbcType=VARCHAR<foreach collection="split4" index="index" item="item4" open="(" separator="," close=")"> #{item4,jdbcType=VARCHAR}</foreach>...原创 2019-07-01 13:35:12 · 586 阅读 · 0 评论