会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
寻水的鱼001
博客园
首页
新随笔
联系
订阅
管理
1
2
3
下一页
2022年9月26日
vscode 打包报错 error code ELIFECYCLE error This is probably not a problem with npm. There is likely additional logging output abov
摘要: 执行命令:npm run build 详细报错信息: 0 info it worked if it ends with ok 1 verbose cli [ 1 verbose cli 'C:\\Program Files (x86)\\nodejs\\node.exe', 1 verbose cl
阅读全文
posted @ 2022-09-26 10:48 寻水的鱼001
阅读(221)
评论(0)
推荐(0)
2022年7月6日
上士闻道,勤而行之;中士闻道,若存若亡;下士闻道,大笑之。不笑不足以为道
摘要: 励志当一个好的合格的程序员,争取早日实现技术自由!!!2022.7.6
阅读全文
posted @ 2022-07-06 17:12 寻水的鱼001
阅读(404)
评论(0)
推荐(0)
2021年9月29日
mysql8 遇到问题:ERROR 2003 (HY000): Can't connect to MySQL server on 'localhost' (10061)的解决方法
摘要: 1:先停服务:net stop mysql 2:移除服务:mysqld -remove mysql 3:E:\zyf\mysql8\bin>mysqld -initialize-insecure -user=mysql 4:E:\zyf\mysql8\bin>mysqld -install mysq
阅读全文
posted @ 2021-09-29 22:35 寻水的鱼001
阅读(369)
评论(0)
推荐(0)
2020年12月3日
mysql忘记密码,但是在Navicat中已经用root用户打开了,这样可以修改密码
摘要: 之前用Navicat登陆的mysql数据库,而且是root用户,由于长时间为登陆,忘记了root密码,现在项目需要修改登陆密码, 修改root用户密码: 1·:打开数据库mysql,如下图: 2:新建一个查询,然后输入语句:set password for root@localhost = pass
阅读全文
posted @ 2020-12-03 10:30 寻水的鱼001
阅读(485)
评论(0)
推荐(0)
2020年6月23日
Java List集合取交集 使用retainall 报错:UnsupportedOperationException
摘要: 代码如下: String[] nameArrays = fileLabelNames.split(","); //查询所有的文件标签 List<FileLabel> fileLabelList = this.selectList(new EntityWrapper<FileLabel>().eq("
阅读全文
posted @ 2020-06-23 19:24 寻水的鱼001
阅读(1097)
评论(0)
推荐(0)
2020年6月11日
idea 中手动导入jar包
摘要: 1:在pom.xml中配置相应的配置,如:我想要引入 junrar-4.0.0.jar 这个jar包 <dependency> <groupId>com.github.junrar</groupId> <artifactId>junrar</artifactId> <version>4.0.0</v
阅读全文
posted @ 2020-06-11 16:49 寻水的鱼001
阅读(1278)
评论(0)
推荐(0)
2020年3月15日
mysql8.0.19 免安装版本的相关配置
摘要: 1:下载好对应的数据库版本;网址:https://dev.mysql.com/downloads/mysql/ 2:下载解压到一个目录,例如:D:\zyf\mysql8【说一下遇到的一个问题,当我设置成D:\zyf\soft\mysql8的时候遇到一个问题,就是路径没有被识别,提示的时候显示的路径不
阅读全文
posted @ 2020-03-15 11:31 寻水的鱼001
阅读(1076)
评论(0)
推荐(0)
2020年2月23日
Mybatis Plus报org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)
摘要: 项目是Spring boot项目,使用了Mybatis Plus,报错: org.apache.ibatis.binding.BindingException: Invalid bound statement (not found) 解决办法是: 修改application.yml配置: mybat
阅读全文
posted @ 2020-02-23 15:28 寻水的鱼001
阅读(1108)
评论(0)
推荐(0)
2020年1月17日
pymongo 中的模糊查询以及以某个值开始的模糊查询【pymongo $regex /^】
摘要: 说明:主要是mongodb数据库的客户端中的shell命令查询和Python中的查询语法有些诧异: 模糊查询诧异: shell中: db.getCollection('郑州').find({community_name_pinyin:/^search_value/})【查询以search_value
阅读全文
posted @ 2020-01-17 19:04 寻水的鱼001
阅读(1544)
评论(0)
推荐(0)
2019年8月23日
pymongo中判断索引是否已经存在,如果不存在则创建,且 在 pymongo 中使用 sort 和limit
摘要: # 查看是否有以“id”创建的倒序索引,如果没有则添加indexs = collection_target.index_information()if "id_-1" not in indexs: collection_target.create_index([("id", -1)])# 先查询表中
阅读全文
posted @ 2019-08-23 16:51 寻水的鱼001
阅读(1189)
评论(0)
推荐(0)
1
2
3
下一页
公告