The mystery behind the @Aspect annotation--Next

The mystery behind the @Aspect annotation--NextforewordWhat is the basis for the progress from manual to automaticAutomatic Proxy CreatorHow to search and filter the enhancer collection1. Find all available candidate advisor s1.1 Two branches of isEligibleBean2. Filter Candidate Enhancers3. Extended Enhancer4. Sort the enhancersSearch for all a ...

Posted by madk on Sun, 26 Feb 2023 13:12:45 +0300

Liver 2022 World Cup, angry write enterprise-level image private warehouse Docker+Harbor practice

2022-12-09 The first day of the 2022 Qatar World Cup semi-finals kicks off, and it gets more and more exciting At the same time record the growth of the programmer~ 1. Background Since I expected to build an enterprise-level CICD environment, I started to try the conventional gitlab+jenkins+k8s+docker harbor+springboot and started to practic ...

Posted by cool-palace-ceo on Sat, 10 Dec 2022 16:42:51 +0300

Use kubeadm to build a Kubernetes cluster

Kubernetes cluster construction - kubeadm method Kubeadm is a K8s deployment tool that provides kubeadm init and kubeadm join for rapid deployment of Kubernetes clusters. Tool function: kubeadm init: Initialize a Master nodekubeadm join: join the worker node to the clusterkubeadm upgrade: upgrade K8s versionkubeadm token: Manage the token ...

Posted by addie on Wed, 07 Dec 2022 09:37:35 +0300

Docker packaging front-end and back-end project image deployment documents

illustrate This time, 6 ports are used to do a front-end and back-end docker image deployment 8080,8081 are the ports of the two backend services 8082,8083 are the ports for the two front ends The project uses nginx as a proxy to solve the cross-domain problem caused by different front-end and back-end ports, because I use both the front-end ...

Posted by knight on Sat, 05 Nov 2022 03:38:32 +0300

Containerized Deployment - Kubernetes(K8S) Quick Start

Containerized deployment With the popularity of Docker technology, containerized deployment of projects is becoming more and more popular. The advantages of containerized deployment are as follows: ① It can ensure that each container has its own file system, CPU, memory, process space, etc. ②The resources required to run the application are ...

Posted by Hatch on Sat, 22 Oct 2022 02:38:03 +0300

Docker container ------ compose container cluster for quick orchestration

Table of contents introduction 1. Introduction to Docker-compose 2. YAML file format and preparation precautions 2.1, YAML file format 2.2. Notes on YAML format 2.3, YAML data structure 3. Docker Compose configuration common fields Fourth, Docker-compose common commands Five, compose deployment 6. Summary introduction         Doc ...

Posted by livvylove on Fri, 21 Oct 2022 00:38:33 +0300

Step-by-step dismantling of React components - Swipe carousel

I have written one before A simplified version of the swipe carousel component , I didn't consider a lot of details and general parameter configuration at that time, the main thing was to record the implementation ideas, and there was no source code. I picked it up a few years ago, sorted it out, and packaged it into a component. There is ...

Posted by Coronach on Wed, 05 Oct 2022 12:01:14 +0300

Detailed description of dock command

install https://docs.docker.com/engine/install/ Just install ce (community version) Start command Start docker systemctl start docker Close docker systemctl stop docker Restart docker systemctl restart docker docker settings start automatically when the service starts systemctl enable docker View Status View docker Running Sta ...

Posted by wata on Sun, 18 Sep 2022 21:43:12 +0300

Container cornerstone runc source code analysis -- 1 Construction of source code debugging environment

Construction of source code debugging environment Environment constructionDetailed explanation of createcontainer process preface In the era of cloud origin, it goes without saying how important containers are. Runc is a CLI tool used to generate and run containers on Linux according to OCI specification. It is one of the underlying ...

Posted by transformationstarts on Sun, 22 May 2022 04:23:10 +0300

Docker installation and common commands

Docker installation and common commands 1, docker installation 1.yum update yum update 2. Install required packages Yum util provides the yum config manager function, and the other two are dependent on the devicemapper driver yum install -y yum-utils device-mapper-persistent-data lvm2 3. Set yum source yum-config-manager --add-repo ht ...

Posted by NFWriter on Sun, 22 May 2022 00:50:52 +0300