How to implement large-scale image management and distribution based on Harbor and Registry

Follow the “Wonderful World of Linux” on the public account Set it as a “star” and let you play Linux every day! 1. Challenges brought by Harbor’s cross-region If you simply store image data, Registry will be a good choice as an image warehouse. Registry not only supports multiple storage backends, but can also configure […]

Springboot extension point BeanDefinitionRegistryPostProcessor

Collection of implementation methods and working principles of Springboot extension point series: Springboot extension point ApplicationContextInitializer Springboot extension point BeanFactoryPostProcessor Springboot extension point BeanDefinitionRegistryPostProcessor Springboot extension point BeanPostProcessor Springboot extension point InstantiationAwareBeanPostProcessor Springboot extension point SmartInstantiationAwareBeanPostProcessor Springboot extension point ApplicationContextAwareProcessor Springboot extension point @PostConstruct Springboot extension point InitializingBean Springboot extension point SmartInitializingSingleton Springboot extension point […]

Linux local Docker Registry local image warehouse remote connection

Table of Contents Linux local Docker Registry local image warehouse remote connection 1. Deploy Docker Registry 2. Test push image locally 3. Linux installation cpolar 4. Configure Docker Registry public network access address 5. Remote push to Docker Registry over public network 6. Fixed Docker Registry public network address Linux local Docker Registry local image […]

Windows forensics registry

1. Overview The registry (English: Registry) is an important hierarchical database in the Microsoft Windows operating system and its applications. It is used to store configuration information of the system and applications. As early as Windows 3.0 launched OLE technology, the registry had already appeared. However, starting from Windows 95, the registry really became something […]

Registry escape backslash and double quotes.bat

@goto :main_20230915_063011 test environment: * Windows 11 22H2 22621.1992 * cmd.exe 10.0.22621.1635 * regedit.exe x64 10.0.22621.1 * reg.exe x64 10.0.22621.1 * RegWorkshopX64.exe 5.1.0.0 https://stackoverflow.com/questions/27536949/how-to-add-a-registry-key-with-default-value-containing-double-quotes-and-percen/77109243 [Registry key length upper limit table] When the main item is: Command line longest item name (254) longest item name (manual 256) longest value name (259) longest value data (REG_SZ, 3w) […]

Detailed interpretation of the DataX Core TransformerRegistry class

TransformerRegistry class, used to register, load and manage data transformers. The following is an explanation of the function of each part: First, this class maintains a map called registedTransformer to store registered transformer information. In the static code block, some native converter instances are built in and registered to registedTransformer. The loadTransformerFromLocalStorage method is used […]

Spring Series Part 29: BeanFactory Extension (BeanFactoryPostProcessor, BeanDefinitionRegistryPostProcessor)

There are two very important interfaces in Spring: BeanFactoryPostProcessor and BeanDefinitionRegistryPostProcessor. These two interfaces are often asked in interviews. In this article, we will take down them both. Let’s look at a few questions first What does BeanFactoryPostProcessor do? What does BeanDefinitionRegistryPostProcessor do? What is the difference between BeanFactoryPostProcessor and BeanDefinitionRegistryPostProcessor? What is the execution […]

spring custom type conversion-ConverterRegistry

1Background introduction An application project will involve a lot of model conversions, such as DTO model to DO model, DO model to DTO, or Request to DTO model. In general, maintenance is relatively complicated. Every conversion involved requires rewriting the get or set methods of the corresponding class, and these methods are scattered in different […]

Docker’s private warehouse Registry&Harbor

Table of Contents 1. Docker private warehouse (Registry) 1.1 Introduction to Registry 2. Build a local private warehouse 2.1 First download the registry image 2.2 Add the private image warehouse address in the daemon.json file 2.3 Run the registry container 2.4 Docker container restart strategy 2.5 Tag the image 2.6 Upload to private warehouse 2.7 […]