nginx 的naginx 种包含include关键字

摘要: include vhost/*.conf; # include 指令用于包含拆分的配置文件 阅读全文
posted @ 2020-07-29 17:15 pokeTwo 阅读(211) 评论(0) 推荐(0) 编辑

Redis 出现NOAUTH Authentication required解决方案

摘要: 这个问题的原因是设置了密码,但是没有使用密码进行登录,如果你下载是被人的包,那么很有可能是有密码的 解决方式 用密码登陆:我们输入 auth 123456#你刚才设置的密码 前言 标题很长哈!今天操作Redis的时候出现了MISCONF Redis is configured to save RDB 阅读全文
posted @ 2020-07-27 10:03 pokeTwo 阅读(20671) 评论(0) 推荐(1) 编辑

mysql 8.0出现 Public Key Retrieval is not allowed

摘要: 转自 : https://blog.csdn.net/u013360850/article/details/80373604 最简单的解决方法是在连接后面添加 allowPublicKeyRetrieval=true 文档中(https://mysql-net.github.io/MySqlConn 阅读全文
posted @ 2020-07-10 11:32 pokeTwo 阅读(207) 评论(0) 推荐(0) 编辑

修改jar包里的源码时候需要注意的问题

摘要: 1.只修改里面的单个文件的时候,可能会需要依赖问题 用 -cp可破 2.cmd 命令 javac 也可以出现不少提示符 类似-cp 可以供参考 3.使用jd-gui-windows-1.6.6 工具进行编译 下载地址 链接:http://java-decompiler.github.io/ 阅读全文
posted @ 2020-06-18 11:23 pokeTwo 阅读(350) 评论(0) 推荐(0) 编辑

sql备份数据案例

摘要: 例子:INSERT INTO TEMP_BUS_TRAVEL_INFO ( SELECT * FROM BUS_TRAVEL_INFO t where to_Char( start_time,'YYYYMMDD')>='20170101' AND to_Char( start_time,'YYYYM 阅读全文
posted @ 2020-06-17 11:08 pokeTwo 阅读(153) 评论(0) 推荐(0) 编辑

oracle自动生成表转大小写

摘要: oracle下划线转驼峰select substr(replace(initcap('a' || 't_sys_user'), '_', ''), 2) from dual; 驼峰转下划线select regexp_replace('tSysUser', '([[:upper:]])(.)', '_ 阅读全文
posted @ 2020-04-18 14:49 pokeTwo 阅读(300) 评论(0) 推荐(0) 编辑

git 与GitHub 使用

摘要: 打开 git bash 克隆项目 git init 初始化文件夹 ,这时候文件夹会生成 git 文件 git clone url 项目更新 首选可以用git 进入到项目页面(记住是项目的一层,不是项目的父级哦) 然后输入 git pull 这个命令是你在没有任何更新冲突的情况下直接更新 当然可以 g 阅读全文
posted @ 2019-12-15 12:41 pokeTwo 阅读(109) 评论(0) 推荐(0) 编辑

IDEA debug 调解快捷键

摘要: F9 resume programe 恢复程序 Alt+F10 show execution point 显示执行断点 F8 Step Over 相当于eclipse的f6 跳到下一步 F7 Step Into 相当于eclipse的f5就是 进入到代码 Alt+shift+F7 Force Ste 阅读全文
posted @ 2019-11-06 09:01 pokeTwo 阅读(113) 评论(0) 推荐(0) 编辑

IDEA好用的插件登记

摘要: 1代码编写效果插件:Power Mode II 阅读全文
posted @ 2019-09-30 11:31 pokeTwo 阅读(101) 评论(0) 推荐(0) 编辑

新建maven的springBoot项目时候导包出错

摘要: 无法从setting.xml 配置的仓库把相应的包下下来。这可能是因为RELEASE包不稳定。 可以在pom.xml 直接指定新的下载地址。在pom.xml 最后的project标签里增加该该代码 阅读全文
posted @ 2019-09-26 13:34 pokeTwo 阅读(613) 评论(0) 推荐(0) 编辑