摘要: 1. k8s 安装 systemctl stop firewalldsystemctl disable firewalld # 修改 hostnamehostnamectl set-hostname k8s-01# 查看修改结果hostnamectl status# 设置 hostname 解析ec 阅读全文
posted @ 2023-05-31 21:15 周无极 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-04-15 17:56 周无极 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-04-12 11:08 周无极 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-04-09 14:59 周无极 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-04-09 09:19 周无极 阅读(10) 评论(0) 推荐(0) 编辑
摘要: package com.bjsxt.observer; public interface Observer { void update(Subject subject); } Observer package com.bjsxt.observer; public class ObserverA im 阅读全文
posted @ 2023-04-08 15:56 周无极 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-04-07 14:36 周无极 阅读(8) 评论(0) 推荐(0) 编辑
摘要: --Spring 原理架构图 -- 容器刷新 第二步骤看 Bean 初始化 -- 第一步骤看 Bean生命周期流程() 阅读全文
posted @ 2023-04-07 09:31 周无极 阅读(10) 评论(0) 推荐(0) 编辑
摘要: - XML 解析封装BeanDefinition 断点在 DefaultListableBeanFacy, registerBeanDefinition() 二 如果给属性赋值 三 各种postprocessor ## 2、Spring套路点 - 1、AbstractBeanDefinition 看 阅读全文
posted @ 2023-04-05 16:32 周无极 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 浅克隆 package com.bjsxt.prototype; import java.io.Serializable; import java.util.Date; public class Sheep implements Cloneable,Serializable { //1997,英国的 阅读全文
posted @ 2023-04-05 11:20 周无极 阅读(10) 评论(0) 推荐(0) 编辑