Spring boot 2.0 mongoTemplate 操作范例 - http://www.netkiller.cn - 开源中国

本文节选自 《Netkiller Spring Cloud 手札》Netkiller Spring Cloud 手札=========================Spring Cloud Cookbook Mr. Neo Chan, 陈景峯(BG7NYT) 中国广东省深圳市望海路半岛城邦三期 518067 +86 13113668890 `<`...
阅读全文

macos - Bash script absolute path with OSX - Stack Overflow

Ugh. I found the prior answers a bit wanting for a few reasons: in particular, they don't resolve multiple levels of symbolic links, and they are extremely "Bashy". While the original question does ex...
阅读全文

ESLint - 简介 - 简书

ESLint是一个用来识别 ECMAScript 并且按照规则给出报告的代码检测工具,使用它可以避免低级错误和统一代码的风格。ESLint被设计为完全可配置的,主要有两种方式来配置ESLint: 在注释中配置:使用JavaScript注释直接把配置嵌入到JS文件中。 配置文件:使用下面任一的文件来为全部的目录和它的子目录指定配置信息。 javascript:使用`.es...
阅读全文

Mac OS X 如何使用类似 ubuntu 下的 realpath - 闲云孤鹤 - CSDN博客

参考:1\. 安装 coreutils$ brew install coreutils安装完后,可以使用 realpath / grealpath2\. 在 .bash_profile 追加一个 function```bashfunction realpath() { && echo "$1" || echo "$PWD/${1./}"}```原网址: ...
阅读全文

shell 中获取文件真实路径(绝对路径) - LGD_2008的专栏 - CSDN博客

shell 脚本中,通常会使用相对路径来做处理,但有时候,我们也许需要用到绝对路径。 在shell怎么获取一个文件或目录的绝对路径呢? 也许你会立马想到realpath(如果你写过php的话),那么shell支持这个命令吗?看一下这里你就知道了。 Realpath appears to come from debian, and is not part of coreutils,Rea...
阅读全文

java开发编码规约

java开发编码规约
阅读全文

ELK(ElasticSearch, Logstash, Kibana)搭建实时日志分析平台 - 摆渡者 - 开源中国

ELK平台介绍在搜索ELK资料的时候,发现这篇文章比较好,于是摘抄一小段:以下内容来自:日志主要包括系统日志、应用程序日志和安全日志。系统运维和开发人员可以通过日志了解服务器软硬件信息、检查配置过程中的错误及错误发生的原因。经常分析日志可以了解服务器的负荷,性能安全性,从而及时采取措施纠正错误。通常,日志被分散的储存不同的设备上。如果你管理数十上百台服务器,你还在使用依次登...
阅读全文

Laravel5.4 Oauth2.0认证应用 API 实战! - 简书

项目初始化新建项目```lukeyansMacBookPro:laravel lukeyan$ laravel new laravel_demo```添加laravel自带的Passport服务```lukeyansMacBookPro:laravel_demo lukeyan$ composer require laravel/passport```接下来...
阅读全文

mysql - What's the difference between utf8_general_ci and utf8_unicode_ci - Stack Overflow

These two collations are both for the UTF8 character encoding. The differences are in how text is sorted and compared._Note: Since MySQL 5.5.3 you should use rather than `utf8`. They both refer ...
阅读全文

mysql中的utf8mb4、utf8mb4_unicode_ci、utf8mb4_general_ci - AmyZYX - 博客园

1.utf8与utf8mb4(utf8 most bytes 4) MySQL 5.5.3之后增加了utfmb4字符编码 支持BMP(Basic Multilingual Plane,基本多文种平面)和补充字符 最多使用四个字节存储字符utf8mb4是utf8的超集并完全兼容utf8,能够用四个字节存储更多的字符。标准的UTF8字符集编码是可以使用14个字节去编...
阅读全文