常见小问题
大龄毕业生
大龄毕业生学习中
展开
-
mybatis中执行批量删除语句,报Data truncation: Truncated incorrect DOUBLE
delete from company where com_id in <foreach collection="ids" item="ids" open="(" close=")" separator=","> com_id=#{ids} </foreach>是我自己写错了sql语句。在中,应该这样子的 delete from company where com_id in <f.原创 2020-10-15 00:11:23 · 631 阅读 · 0 评论 -
Redis (error) NOAUTH Authentication required粗心导致的问题
密码!!!!1密码!!!1请填写密码原创 2020-10-13 22:46:19 · 129 阅读 · 0 评论 -
Load balancer does not have available server for client: eureka-client 奇妙的踩坑之旅
每次重启项目后,我都知道立马去刷新页面(调用接口),就会报这个错误,看了好多好多博客的方法,添加各种配置都没用。启动注册中心和和服提供者后,稍等一下在去调用接口。就可以调用成功真的是很奇怪。可能是因为立马去调用时还不能发现注册进去的服务吧...原创 2020-10-11 00:35:27 · 1230 阅读 · 2 评论 -
Completed shut down of DiscoveryClient Eureka踩坑
启动项目发现没有注册到eureka。在pom中添加。并reload<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>完美解决问题...原创 2020-10-10 22:29:17 · 139 阅读 · 0 评论 -
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)Springboot报错
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)原创 2020-09-07 19:10:20 · 79 阅读 · 0 评论 -
navicat出现 1294 invalid on update clause for
在数据表新建一个timestamp字段出现了如上问题把字段长度设置为0.我的问题就解决了原创 2020-09-07 19:07:33 · 1190 阅读 · 0 评论 -
记录navicat连接mysql 的1251 错误
用命令行输入ALTER USER ‘root’@‘localhost’ IDENTIFIED WITH mysql_native_password BY ‘你的密码’;FLUSH PRIVILEGES;完美解决问题原创 2020-09-06 20:32:10 · 122 阅读 · 0 评论