
Bug的一生🍎
记录bug的一生。
鞠崽23333
Email: alf_work@outlook.com
* Eat a healthy diet.
* Get regular exercise.
* Get enough sleep.
* Spend time with loved ones.
* Avoid alcohol and drugs.
* Learn stress management techniques.
* If you are feeling depressed, talk to a doctor or therapist.
展开
-
【六袆 -C++】 Clion 执行googletest报错 VERSION keyword not followed by a value or was followed by a value...
解决googletest报错 VERSION keyword not followed by a value or was followed by a value that expanded to nothing.原创 2024-07-26 22:14:21 · 225 阅读 · 0 评论 -
【六袆 - Bug】git clone unable to create file
While cloning a git repository from Linux to a Windows system, I am getting the following error in checkout the phase原创 2023-03-24 17:16:01 · 335 阅读 · 0 评论 -
【六袆-Java】 Spring Boot 整合 MyBatis 查询结果返回为 NULL,但是查数据库能查到数据(使用配置)
MyBatis 查询结果返回为 NULL,但是查数据库能查到数据原因有三:1.实体类字段不对应2.没有引入resultMap3.不能以" * " 代替原创 2020-10-28 15:25:03 · 895 阅读 · 0 评论 -
【六袆-Java】mybatis 查询时传入参数为0被误认为是null,且会被忽略 ;处理bug
mybatis 查询时传入参数为0被误认为是null所以SQL改进:"<if test=\"status!=null and status !='' or status==0\">\n" " and `status` = #{status}\n" +"</if>\n"原创 2020-10-22 10:05:51 · 746 阅读 · 0 评论 -
六祎-【maven项目报错】Missing artifact org.springframework:spring-webmvc:jar:${spring.version}(已解决)
原创 2019-09-05 15:57:07 · 2930 阅读 · 0 评论 -
【六袆-Bug】Operation not allowed after ResultSet closed
error:当我循环下载图片的时候,执行一次就退出来了,然后捕获异常,发现报 java.sql.SQLException: Operation not allowed after ResultSet closed然后于是Google一下 错误,出现这种问题是一个stmt多个rs进行操作引起的ResultSet已经关闭错误一个stmt最好对应一个rs, 如果用一个时间内用一个stmt打开两个rs同时操作,会出现这种情况.所以解决此类问题:1.就多创建几...原创 2020-09-09 19:58:09 · 175 阅读 · 0 评论