HTML DOM

摘要: 1. prompt() Refer to https://www.w3school.com.cn/jsref/met_win_prompt.asp 2. classList Refer to https://www.runoob.com/jsref/prop-element-classlist.ht 阅读全文
posted @ 2019-08-09 01:14 chenqr11 阅读(120) 评论(0) 推荐(0) 编辑

k8s 存储系统storage介绍

摘要: k8s 存储的4个概念: Volume、persistentVolume(简称PV)、PersistentVolumeClaim (PVC)、StorageClass。 volume的类型 emptyDir hostPath 本地挂载 local persistentVolumeClaim 阅读全文
posted @ 2019-07-18 02:04 chenqr11 阅读(690) 评论(0) 推荐(0) 编辑

k8s的命令行工具 - kubectl

摘要: 查看状态、服务 kubectl get 获取命名空间 kubectl get namespaces 获取pods kubectl get pods 获取pods详细信息 kubectl describe pods 查看log kubectl logs podname 在pod中执行命令 kubect 阅读全文
posted @ 2019-07-18 01:13 chenqr11 阅读(1132) 评论(0) 推荐(0) 编辑

Kubernetes基础

摘要: kubernetes可方便进行集群应用的部署、扩容、缩容、自愈机制、服务发现、负载均衡、日志、监控。 kubernetes包含对象有pod、service、deployment、volume、Namespace等。 1. pod kubernetes中可创建和部署的最小单位。pod包含信息有应用容器 阅读全文
posted @ 2019-07-18 00:58 chenqr11 阅读(91) 评论(0) 推荐(0) 编辑

Hadoop术语及其命令

摘要: 术语 1. Namenode: HDFS采用master/slave架构。一个HDFS集群由1个Namenode和多个Datanodes组成。Namenode是一个中心服务器。负责datanode节点映射、执行文件重命名等。 2.Datanode,节点,负责客户端的读写请求。 3. Secondar 阅读全文
posted @ 2019-07-17 01:38 chenqr11 阅读(177) 评论(0) 推荐(0) 编辑

What is JWT?

摘要: Json Web Token, 客户端发送jwt到服务器端,这样就不用以用户名密码的形式去验证权限了。 Workflow of how JWT is used Creating a JWT Token http://jwtbuilder.jamiekurtz.com/ Inspect the con 阅读全文
posted @ 2019-07-09 01:13 chenqr11 阅读(117) 评论(0) 推荐(0) 编辑

Spring boot security rest basic Authentication example

摘要: 1. Maven dependency pom.xml 2. Configure WebSecurityConfigurerAdapter SecurityConfig.java 3. Spring boot security rest basic authentication demo 3.1. 阅读全文
posted @ 2019-07-07 01:44 chenqr11 阅读(353) 评论(0) 推荐(0) 编辑

Spring boot caching example

摘要: spring cache API 1. Types of cache 1.1 In-memory caching 如 redis。 1.2 database caching 如 hibernate cache。 2. Spring boot cache annotations initialize 阅读全文
posted @ 2019-07-07 01:09 chenqr11 阅读(169) 评论(0) 推荐(0) 编辑

Spring Boot log4j2 configuration example

摘要: spring boot 默认log用的是 LogBack。 1. Log4j2 Maven Dependency pom.xml 2. Add log4j2.xml file in resources folder 如果存在log4j2 jar包,springboot会自动配置它。把 log4j2. 阅读全文
posted @ 2019-07-06 18:00 chenqr11 阅读(323) 评论(0) 推荐(0) 编辑

springboot async rest controller with Callable interface

摘要: 1. spring boot async controller 阅读全文
posted @ 2019-07-06 14:58 chenqr11 阅读(278) 评论(0) 推荐(0) 编辑