摘要: <template> <div class="demo"> <el-transfer v-model="value" filterable :data="data" :filter-method="filterMethod" :target-order="'push'" :titles="['左边数 阅读全文
posted @ 2021-04-04 22:34 长情白月光 阅读(239) 评论(0) 推荐(0) 编辑
摘要: date_sub()函数: DATE_SUB(date,INTERVAL expr type) 实例: SELECT NOW(),DATE_SUB(NOW(),INTERVAL 1 HOUR) as the_time select * from xxx where create_time > DAT 阅读全文
posted @ 2020-07-15 19:38 长情白月光 阅读(260) 评论(0) 推荐(0) 编辑
摘要: application.yaml文件读取不到pom.xml下的标签值,报 Caused by: org.yaml.snakeyaml.scanner.ScannerException: while scanning for the next tokenfound character '@' that 阅读全文
posted @ 2020-06-04 14:36 长情白月光 阅读(1806) 评论(0) 推荐(1) 编辑
摘要: 在git bash中,运行下列命令: git config --global core.longpaths true 就可以解决该问题。 --global是该参数的使用范围,如果只想对本版本库设置该参数,只要在上述命令中去掉--global即可。 转自:https://blog.csdn.net/s 阅读全文
posted @ 2020-04-10 11:13 长情白月光 阅读(193) 评论(0) 推荐(0) 编辑
摘要: rebase实操:https://www.jianshu.com/p/5c9c6383aa36 rebase实操1:https://juejin.im/post/5cb20c45e51d456e2e656d11 1 what is rebase rebase,直接翻译过来就是变基,而这个命令就是这么 阅读全文
posted @ 2020-04-07 21:35 长情白月光 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 简述 git cherry-pick可以选择某一个分支中的一个或几个commit(s)来进行操作。例如,假设我们有个稳定版本的分支,叫v2.0,另外还有个开发版本的分支v3.0,我们不能直接把两个分支合并,这样会导致稳定版本混乱,但是又想增加一个v3.0中的功能到v2.0中,这里就可以使用cherr 阅读全文
posted @ 2020-04-07 20:33 长情白月光 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 1 先看oracle的监听和oracle的服务是否都启动了。启动oracle监听:cmd的命令行窗口下,输入lsnrctl start,回车即启动监听。2 查看oracle的sid叫什么,比如创建数据库的时候,实例名叫“abc”,那么先手工设置一下oralce的sid,cmd命令窗口中,setORA 阅读全文
posted @ 2020-02-28 20:01 长情白月光 阅读(392) 评论(0) 推荐(0) 编辑
摘要: 1.运行db的sqlplus:sqlplus sys/sys as sysdba (sys/sys为“用户名”/“密码”) 或配置client的监听后运行Client的sqlplus 2. (可省略)查看当前服务名:SQL> show parameter service_name 3. 修改服务名: 阅读全文
posted @ 2020-02-28 19:56 长情白月光 阅读(995) 评论(0) 推荐(0) 编辑
摘要: 把定时任务quartz配置mysql里多台机器启动时可能会出现数据库死锁,然后控制台报错: Lock wait timeout exceeded;try restarting transaction 项目启动失败,这时候只需要去mysql中查两个语句,然后杀掉对应的死锁线程就行: 1. 查询mysq 阅读全文
posted @ 2020-02-13 14:52 长情白月光 阅读(270) 评论(0) 推荐(0) 编辑
摘要: 1. 解压安装MySQL8.0,报错Install/Remove of the Service Denied! 在windows 的cmd命令行下安装mysql 在mysql的bin目录下面执行: mysqld --install 报错: 信息如下: Install/Remove of the Se 阅读全文
posted @ 2020-01-27 17:51 长情白月光 阅读(153) 评论(0) 推荐(0) 编辑