上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 55 下一页

2019年3月19日

linux ssh 上传 文件

摘要: 在linux下一般用scp这个命令来通过ssh传输文件。 1、从服务器上下载文件scp username@servername:/path/filename /var/www/local_dir(本地目录) 例如scp root@192.168.0.101:/var/www/test.txt 把19 阅读全文

posted @ 2019-03-19 08:43 正义的伙伴! 阅读(6164) 评论(0) 推荐(1) 编辑

2019年3月18日

Ant demo

摘要: ... 阅读全文

posted @ 2019-03-18 16:22 正义的伙伴! 阅读(389) 评论(0) 推荐(0) 编辑

2019年3月15日

nginx windows 安装为服务.

摘要: 安装Nginx 下载windows版nginx (http://nginx.org/download/nginx-1.10.0.zip),之后解压到需要放置的位置(D:\xampp\nginx) 将Nginx设置为Windows服务 需要借助"Windows Service Wrapper"小工具, 阅读全文

posted @ 2019-03-15 12:43 正义的伙伴! 阅读(3294) 评论(0) 推荐(0) 编辑

2019年3月14日

maven 打包 源代码

摘要: org.apache.maven.plugins maven-source-plugin 3.0.0 ... 阅读全文

posted @ 2019-03-14 12:40 正义的伙伴! 阅读(454) 评论(0) 推荐(0) 编辑

2019年3月5日

maven build 添加到 META-INF 目录。

摘要: <build> <resources> <resource> <directory>src/main/resources</directory> <targetPath>META-INF/</targetPath> </resource> </resources> </build> <build> 阅读全文

posted @ 2019-03-05 15:04 正义的伙伴! 阅读(3785) 评论(0) 推荐(0) 编辑

Javascript 连接两个数组

摘要: JS合并两个数组的方法 1、concatjs的Array对象提供了一个叫concat()方法,连接两个或更多的数组,并返回结果。 这里有一个问题,concat方法连接a、b两个数组后,a、b两个数组的数据不变,同时会返回一个新的数组。这样当我们需要进行多次的数组合并时,会造成很大的内存浪费,所以这个 阅读全文

posted @ 2019-03-05 11:28 正义的伙伴! 阅读(14335) 评论(0) 推荐(0) 编辑

2019年3月4日

docker 部署 笔记

摘要: Docker虚拟机常用命令 yum -y update yum install -y docker service docker start service docker start service docker stop docker search 镜像名称 docker pull 镜像名称 do 阅读全文

posted @ 2019-03-04 19:10 正义的伙伴! 阅读(577) 评论(0) 推荐(0) 编辑

mysql 导入 导出

摘要: mysql导入导出sql文件 https://www.cnblogs.com/freefei/p/7679991.html -q 不用缓存 --skip-lock-table 禁用锁表 -h ip -P 端口 ccc 数据库名 -u root 用户名 mysqldump -q --skip-lock 阅读全文

posted @ 2019-03-04 15:24 正义的伙伴! 阅读(151) 评论(0) 推荐(0) 编辑

2019年2月28日

Jenkins 更换国内源

摘要: jenkins插件清华大学镜像地址https://mirrors.tuna.tsinghua.edu.cn/jenkins/updates/update-center.json1更换地址方法1.进入jenkins系统管理 2.进入插件管理 3.点击高级,修改升级站点的地址为清华大学镜像地址 阅读全文

posted @ 2019-02-28 07:21 正义的伙伴! 阅读(28679) 评论(0) 推荐(3) 编辑

2019年2月27日

git 笔记

摘要: #1 git reset 取消放到暂存区的文件 例如 git reset .idea/* git reset HEAD filename :回退文件,将文件从暂存区回退到工作区 //也可以使用 git reset filename #2 git 设置 branch git branch --set- 阅读全文

posted @ 2019-02-27 16:32 正义的伙伴! 阅读(130) 评论(0) 推荐(0) 编辑

上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 55 下一页

导航

//增加一段JS脚本,为目录生成使用