https://www.alibabacloud.com/forum/read-830 This article illustrates how to quickly deploy a safe Kubernetes cluster on Alibaba Cloud VPC, and install ...
分类:
Web程序 时间:
2020-03-23 15:08:52
阅读次数:
106
1、首先我们了解一下如何自定义一个注解。 @Target(),下面是@Target的描述 * The constants of this enumerated type provide a simple classification of the * syntactic locations wher ...
分类:
编程语言 时间:
2020-03-22 19:47:30
阅读次数:
73
maven由于他的约定大于配置,我们之后可以能遇到我们写的配置文件,无法被导出或者生效的问题,解决方法: <build> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.prop ...
分类:
移动开发 时间:
2020-03-16 19:15:04
阅读次数:
89
varchar的长度最大是65535字节 创建的时候varchar(n) 这里面的n是字符长度 所以编码格式不一样,n的最大值也不一样 编码格式为Latin1时 n理论最大值为 65535 编码格式为gbk时 n理论最大值为 65535/2 = 32767 编码格式为utf8时 n理论最大值为 65 ...
分类:
其他好文 时间:
2020-03-14 22:20:10
阅读次数:
88
ES6语法转换 -> babel-loader 依赖: babel-loader @babel/core @babel/preset-env @babel/polyfill 其他依赖可以通过babeljs官方网站查询,转换装饰器 class语法 module.exports = { module: ...
分类:
Web程序 时间:
2020-03-13 01:03:54
阅读次数:
74
修改器方法(9) 访问方法(11) 迭代方法(12) 在每一个数组元素都分别执行完回调函数之前,数组的length属性会被缓存在某个地方。所以迭代时慎重改变数组长度。 数组检测 1. ECMAScript 3 instanceof instanceof 操作符的问题在于,它假定只有一个全局执行环境。 ...
分类:
编程语言 时间:
2020-03-09 20:46:46
阅读次数:
96
1、查看项目所有依赖树: 在项目的pom.xml所在目录执行:mvn dependency:tree 会输入项目的所有直接依赖、传递依赖关系。 2、查看对指定项目的依赖传递关系,可执行:mvn dependency:tree -DartifactId=xxx (xxx为指定的项目名)。 当然,也可指 ...
分类:
其他好文 时间:
2020-03-06 11:13:44
阅读次数:
59
1、使用 Array.includes 来处理多个条件 请看下面的列子: // condition function test(fruit) { if (fruit == 'apple' || fruit == 'strawberry') { console.log('red'); } } 上面的列 ...
分类:
编程语言 时间:
2020-03-04 09:27:00
阅读次数:
132
1、一键安装lnmp后:访问其他站点,报404错误。 安装lnmp: yum -y install screen wget screen -S lnmp wget http://soft.vpser.net/lnmp/lnmp1.6.tar.gz -cO lnmp1.6.tar.gz && tar ...
分类:
其他好文 时间:
2020-02-26 01:23:53
阅读次数:
77
copy from: http://gityuan.com/2016/03/19/android-build/ 一、引言 关于Android Build系统,这个话题很早就打算整理下,迟迟没有下笔,决定跟大家分享下。先看下面几条指令,相信编译过Android源码的人都再熟悉不过的。 source s ...
分类:
移动开发 时间:
2020-02-24 20:31:36
阅读次数:
80