上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 55 下一页

2019年12月10日

nginx 编译安装,问题

摘要: # 编译 ./configure \--prefix=/usr/local/nginx \--with-http_ssl_module \--with-http_stub_status_module \--with-http_flv_module \--with-http_gzip_static_m 阅读全文

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

2019年12月5日

git readme.md 文档头部写法

摘要: <p align="center"> <img src="http://q22ig8g6g.bkt.clouddn.com/java-min-logo.jpg" border="0" /> </p> <p align="center"> <strong>一种简单的,支持不同方案的高性能分布式锁</strong> </p> <p align="center"> <a href="http 阅读全文

posted @ 2019-12-05 17:20 正义的伙伴! 阅读(483) 评论(0) 推荐(0) 编辑

2019年12月4日

git tag 相关操作

摘要: 1、推送标签:git push origin 标签名 2、删除本地标签:git tag -d 标签名 3、删除远程标签:git push origin :refs/tags/标签名 例:git push origin :refs/tags/V3.0.1-Release 4、其他本地操作 打标签 :g 阅读全文

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

2019年12月2日

nginx 静态分离,优化

摘要: location = / { root D:/project/application/meal/WebRoot; index index.html index.htm; #expires 7d; } location ~ .*\.(js|css|jpg|jpeg|png|html)?$ { root 阅读全文

posted @ 2019-12-02 07:57 正义的伙伴! 阅读(263) 评论(0) 推荐(0) 编辑

2019年11月29日

BigDecimal Api 相关

摘要: private static final java.text.DecimalFormat df = new java.text.DecimalFormat("#.##");#.## 写成 #.00 的话,如果是 0.119 则会返回 .12 ,会丢失 个位数的 0 !! 阅读全文

posted @ 2019-11-29 22:53 正义的伙伴! 阅读(323) 评论(0) 推荐(0) 编辑

2019年11月26日

spring boot logback 配置

摘要: pom 依赖 阅读全文

posted @ 2019-11-26 13:48 正义的伙伴! 阅读(198) 评论(0) 推荐(0) 编辑

2019年11月22日

redis linux 编译安装

摘要: 1. 安装 gcc ,apt-install gcc 2. apt-get install tcl (安装这个主要是 make test 用) 2. makie PREFIX=编译目录 MALLOC=libc (指定编译器。) 3. make install PREFIX = 目录 4. 完成 允许 阅读全文

posted @ 2019-11-22 17:27 正义的伙伴! 阅读(189) 评论(0) 推荐(0) 编辑

linux 挂载新硬盘

摘要: 1. lsblk 列出设备2. fdisk /dev/vdc 创建分区3. mkfs -t ext4 -c /dev/sdb1 (快速格式化:mkfs.ext4 /dev/sdb1)测试mkfs.ext4 -T largefile /dev/xxx这个方式,几乎在几分钟完成快速格式化。4. moun 阅读全文

posted @ 2019-11-22 11:10 正义的伙伴! 阅读(185) 评论(0) 推荐(0) 编辑

2019年11月14日

grep 别名配置

摘要: alias grep='grep -v grep | grep --color=auto' 阅读全文

posted @ 2019-11-14 20:57 正义的伙伴! 阅读(234) 评论(0) 推荐(0) 编辑

2019年11月13日

linux ls 列出全路径

摘要: 1、列出当前目录的文件、文件夹完整路径 ls -1 |awk '{print i$0}' i=`pwd`'/'2、列出当前目录及子目录的文件、文件夹完整路径 ls -R |awk '{print i$0}' i=`pwd`'/'2b) 列出当前目录及子目录下的文件夹完整路径 ls -FR | gre 阅读全文

posted @ 2019-11-13 14:51 正义的伙伴! 阅读(12764) 评论(0) 推荐(0) 编辑

上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 55 下一页

导航

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