摘要: 直接参考:https://xt.kejizhijia.net/news/660.html 测试用了:XNTT9-CWMM3-RM2YM-D7KB2-JB6DV 阅读全文
posted @ 2023-07-06 17:27 幸运刘 阅读(123) 评论(0) 推荐(0) 编辑
摘要: # 一、导出 ```sh #orcl:数据库服务实例名 #dumpfile:导出的文件名称 #tablespace:需要导出的表空间名称 expdp username/password@ip:port/orcl dumpfile=xxxx.dmp tablespace=xxxx ``` > 如果以下 阅读全文
posted @ 2023-07-03 15:25 幸运刘 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/zhengjf123/article/details/127293374 参考:https://blog.csdn.net/Start2019/article/details/100091495 全局loading添加:https://blog.cs 阅读全文
posted @ 2023-06-30 09:37 幸运刘 阅读(283) 评论(0) 推荐(0) 编辑
摘要: 系统运行的过程中莫名其妙出现ErrorCode17410(No more data to read from socket)错误,只是某一个功能的sql执行出现,但是把sql语句复制到plsql执行又没问题,后面尝试对数据库的进程都清理就好了,应该是进程占用出了问题,具体命令如下 ```sh ps 阅读全文
posted @ 2023-06-29 21:34 幸运刘 阅读(622) 评论(0) 推荐(0) 编辑
摘要: 后端: yudao-server启动报错,命令太长,打开当前父级目录下的.idea目录下的workspace.xml在标签中添加以下子标签 <property name="dynamic.classpath" value="true" /> 前端: 错误1: 1、执行yarn install报错:e 阅读全文
posted @ 2023-04-06 23:14 幸运刘 阅读(1657) 评论(0) 推荐(0) 编辑
摘要: 参考:https://zhuanlan.zhihu.com/p/592166597 redis数据进制问题的解决 redis会将存储的中文数据转成16进制,所以我们在连接控制台的时候将redis-cli改为redis-cli --raw输入进去即可 中文乱码问题 这个问题是因为写java文件时用的是 阅读全文
posted @ 2023-03-26 11:30 幸运刘 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 在idea中按 “ctrl+shift+f8” 清理掉所有不认识的端点,留下自己的端点即可 阅读全文
posted @ 2023-03-23 11:23 幸运刘 阅读(60) 评论(0) 推荐(0) 编辑
摘要: select ec.id,classDate from ea_curriculum ec order by classDate < DATE_FORMAT(now(), '%Y-%m-%d'),if(classDate < now(),0,classDate),classDate desc 阅读全文
posted @ 2023-03-22 22:07 幸运刘 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 安装插件 npm install --save sql-formatter 引用 import { format } from "sql-formatter"; 使用 format(res.msg) 阅读全文
posted @ 2023-03-14 11:10 幸运刘 阅读(397) 评论(0) 推荐(0) 编辑
摘要: 控制台直接执行以下命令: set NODE_OPTIONS openssl-legacy-provider 阅读全文
posted @ 2023-03-06 14:04 幸运刘 阅读(110) 评论(0) 推荐(0) 编辑