jQuery火箭图标返回顶部代码 - 站长素材
摘要: 环境: windows 7 oracle jdk 1.8 intellij idea 2019.3.1 spring-framework 5.1.22.RELEASE 步骤: 1: 下载解压spring zip 包(githup或者gitee下载) 2: 修改spring-framework源码配置 阅读全文
posted @ 2019-12-23 11:47 bincooo 阅读(5708) 评论(2) 推荐(0)
摘要: 环境: jdk1.8 window7 cmder 1.生成证书库jks keytool.exe -genkeypair -alias www.bingco.com -keyalg RSA ^ -keysize 2048 -keypass 126321 ^ -sigalg SHA256withRSA 阅读全文
posted @ 2019-12-09 16:00 bincooo 阅读(772) 评论(0) 推荐(0)
摘要: 如题: docker部署后的服务注册ID是这样的。 这导致了Feign在调用其他组件的时候访问不到。 解决: 在docker部署指令添加EUREKA_INSTANCE_IP-ADDRESS=[你的IP]。 docker build -t ams-administration:v1.0.0 . && 阅读全文
posted @ 2019-11-27 15:02 bincooo 阅读(2164) 评论(0) 推荐(0)
摘要: 如题: ERROR > The temporary upload location [/tmp/tomcat.7982919351026796141.9097/work/Tomcat/localhost/ROOT] is not valid 由于Linux对/tmp路径下长时间无读写操作,会将临时目 阅读全文
posted @ 2019-10-10 09:45 bincooo 阅读(510) 评论(0) 推荐(0)
摘要: 1.查询全局变量: SHOW GLOBAL VARIABLES [LIKE '%search key%']; 2.修改全局变量: SET GLOBAL auto_increment_increment = 1; 3.刷新即时生效 flush privileges 阅读全文
posted @ 2019-08-20 09:33 bincooo 阅读(2046) 评论(0) 推荐(0)
摘要: Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock'解决?: >>> 2019-06-27T09:08:24.769172Z 0 [Note] InnoDB: Creating shared ta 阅读全文
posted @ 2019-07-15 15:06 bincooo 阅读(1321) 评论(0) 推荐(1)
摘要: ## 安装 nfs 和 rpc yum install -y nfs-utils rpcbind ## ubuntu 安装 nfs 和 rpc ## apt-get install nfs-kernel-server apt-get install rpcbind ## 服务端## 默认 rpc 开 阅读全文
posted @ 2019-07-15 14:58 bincooo 阅读(396) 评论(0) 推荐(0)
摘要: 工作中公司要求针对经销商PC端和工厂PC端的访问地址固定访问。 经销商PC端 http://localhost/ 工厂PC端 http://localhost/fac 文件磁盘路径: /crm/nginx-pages | admin | adminfac 经销商端: location ^~ /adm 阅读全文
posted @ 2019-04-30 15:55 bincooo 阅读(21458) 评论(0) 推荐(1)
摘要: 当支付成功,但是支付宝管道返回的表单数据返回验签失败: 记住!!!! 后台配置的PUBLIC_KEY 一定要是支付宝公钥,而不是应用公钥!!! 后台配置的PUBLIC_KEY 一定要是支付宝公钥,而不是应用公钥!!! 后台配置的PUBLIC_KEY 一定要是支付宝公钥,而不是应用公钥!!! 重要的事 阅读全文
posted @ 2018-05-30 18:35 bincooo 阅读(202) 评论(0) 推荐(0)
摘要: git 修改commit 的注释 一:最新的一次提交 当你不小心,写错了提交的注视/信息,该如何处理呢。理论上,SCM是不应该修改历史的信息的,提交的注释也是。 不过在git中,其commit提供了一个--amend参数,可以修改最后一次提交的信息.但是如果你已经push过了,那么其历史最后一次,永 阅读全文
posted @ 2018-05-22 14:58 bincooo 阅读(1009) 评论(0) 推荐(0)