Tag

Initialization

0 views collected around this technical thread.

Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
Apr 28, 2025 · Backend Development

Master Spring Boot 3 Initialization: 7 Practical Techniques Explained

This article introduces seven Spring Boot 3 initialization mechanisms—including @PostConstruct, InitializingBean, @Bean initMethod, ApplicationRunner, ContextRefreshedEvent, SmartInitializingSingleton, and SmartLifecycle—detailing their usage, code examples, execution order, and suitable scenarios for effective application startup.

InitializationJavaSpring
0 likes · 8 min read
Master Spring Boot 3 Initialization: 7 Practical Techniques Explained
Aikesheng Open Source Community
Aikesheng Open Source Community
Oct 8, 2024 · Databases

MySQL Initialization Failure Caused by Missing Newline in Configuration File

When initializing a MySQL 5.7.44 instance, the server aborts because the configuration file lacks a trailing newline, causing the parser to misinterpret the final '!includedir' line and report a missing '/etc/my.cnf.' directory, which can be resolved by adding a newline at the end of the file.

InitializationMySQLconfiguration
0 likes · 12 min read
MySQL Initialization Failure Caused by Missing Newline in Configuration File
Yiche Technology
Yiche Technology
Jul 18, 2022 · Fundamentals

Deep Dive into Go's Map Implementation: Hash Tables, Hash Functions, and Runtime Mechanics

This article provides a comprehensive analysis of Go's map implementation, covering its hash‑table foundation, key type constraints, hash function characteristics, collision resolution strategies, runtime initialization, internal structures like hmap and bmap, and the various operations for creation, access, update, deletion, and resizing.

Data StructuresGoInitialization
0 likes · 21 min read
Deep Dive into Go's Map Implementation: Hash Tables, Hash Functions, and Runtime Mechanics
php中文网 Courses
php中文网 Courses
Jul 13, 2021 · Backend Development

Understanding the runWithRequest Method and Application Initialization in ThinkPHP

This article explains the ThinkPHP runWithRequest method, its call to the initialize routine, and details the initialization steps including environment loading, configuration parsing, language pack loading, debug mode setup, middleware loading, and service registration and bootstrapping, with full code examples.

InitializationPHPThinkPHP
0 likes · 10 min read
Understanding the runWithRequest Method and Application Initialization in ThinkPHP
Practical DevOps Architecture
Practical DevOps Architecture
Jan 4, 2021 · Databases

Step-by-Step Guide to Install and Initialize MySQL 8.0.17 on Linux

This tutorial walks through extracting the MySQL 8.0.17 package, creating required directories and users, configuring my.cnf, initializing the data directory, setting up startup scripts, adding MySQL to the system PATH, starting the service, and securing the root password on a Linux host.

DatabaseInitializationInstallation
0 likes · 5 min read
Step-by-Step Guide to Install and Initialize MySQL 8.0.17 on Linux
php中文网 Courses
php中文网 Courses
Nov 9, 2020 · Backend Development

Understanding ThinkPHP Framework Execution Flow: Initialization and Debugging Techniques

This article walks through the ThinkPHP framework's initialization process, explains the underlying design patterns, shows how to trace method calls with debug_backtrace, and discusses configuration loading, container updates, debugging mode, and code redundancy, providing practical code examples for developers.

InitializationSourceCodeAnalysisframework
0 likes · 14 min read
Understanding ThinkPHP Framework Execution Flow: Initialization and Debugging Techniques
php中文网 Courses
php中文网 Courses
Nov 6, 2020 · Backend Development

Understanding ThinkPHP Framework Execution Flow: Initialization, Debugging, and Code Optimization

This article provides a detailed walkthrough of ThinkPHP's initialization process, explains how to trace method executions using debug_backtrace, analyzes the init method and container configuration updates, and offers practical suggestions for code optimization and debugging in backend development.

InitializationPHPThinkPHP
0 likes · 15 min read
Understanding ThinkPHP Framework Execution Flow: Initialization, Debugging, and Code Optimization
Top Architect
Top Architect
Jun 22, 2020 · Fundamentals

Understanding the Seven Stages of Java Class Loading and Initialization

This article explains the seven stages of Java class loading—Loading, Verification, Preparation, Resolution, Initialization, Using, and Unloading—detailing each step, the underlying mechanisms, code examples, and practical considerations such as class initialization triggers and the distinction between symbolic and direct references.

BytecodeClass LoadingInitialization
0 likes · 14 min read
Understanding the Seven Stages of Java Class Loading and Initialization
Xueersi Online School Tech Team
Xueersi Online School Tech Team
Mar 27, 2020 · Frontend Development

Analyzing Vue.js Instance Initialization: How new Vue Works Internally

This article walks through Vue's source code to explain how the new Vue constructor initializes a component, merges options, proxies data, mounts the instance, and ultimately replaces template interpolations with reactive data during the rendering process.

InitializationJavaScriptVue
0 likes · 14 min read
Analyzing Vue.js Instance Initialization: How new Vue Works Internally
Selected Java Interview Questions
Selected Java Interview Questions
Dec 22, 2019 · Fundamentals

Understanding Java Class Loading, Linking, and Initialization

This article explains the three phases of Java class loading—loading, linking, and initialization—detailing how the JVM handles class files, the role of different class loaders, and how to implement a custom class loader with practical code examples.

Class LoadingClassLoaderInitialization
0 likes · 19 min read
Understanding Java Class Loading, Linking, and Initialization
Java Captain
Java Captain
Dec 26, 2018 · Backend Development

Understanding MyBatis Initialization: Configuration Creation and Design Patterns

This article explains the complete MyBatis initialization process, detailing how the XML configuration file is parsed into a Configuration object, how SqlSessionFactory and SqlSession are built, and highlights the Builder design pattern used throughout the setup, with code examples for manual configuration loading.

Builder PatternInitializationJava
0 likes · 13 min read
Understanding MyBatis Initialization: Configuration Creation and Design Patterns
Xianyu Technology
Xianyu Technology
Nov 22, 2018 · Mobile Development

Flutter Initialization Process and Performance Optimization

The article explains that Flutter’s first‑page launch is slower because initialization proceeds through four stages—FlutterMain, FlutterNativeView, FlutterView, and Flutter Bundle—and shows that pre‑initializing the heavy native view, view, and bundle components can cut the initial latency to match later launches.

AndroidInitializationdart
0 likes · 6 min read
Flutter Initialization Process and Performance Optimization
360 Tech Engineering
360 Tech Engineering
Oct 18, 2018 · Mobile Development

Analysis of RePlugin Process Management and Plugin Loading Mechanism

This article provides a detailed source‑code analysis of RePlugin's process management, covering process startup, attachBaseContext handling, IPC initialization, PMF setup, plugin installation, synchronization across processes, and the internal mechanisms for loading and updating plugins.

AndroidIPCInitialization
0 likes · 17 min read
Analysis of RePlugin Process Management and Plugin Loading Mechanism
Java Captain
Java Captain
Jun 10, 2018 · Fundamentals

Detailed Explanation of Java Object Creation and Initialization Process

This article provides an in‑depth overview of how Java objects are created and initialized, covering class loading, the various ways to instantiate objects (new, reflection, clone, deserialization), the step‑by‑step memory allocation and field initialization sequence, and the order of static and instance initialization across inheritance hierarchies.

Class LoadingInitializationJVM
0 likes · 16 min read
Detailed Explanation of Java Object Creation and Initialization Process
Java Captain
Java Captain
Apr 12, 2018 · Fundamentals

Java Constructors, Initialization, and Method Overloading Explained

This article explains how Java objects are initialized using explicit values, default values, and constructors, describes the characteristics and purpose of constructors, demonstrates their syntax with code examples, and introduces method overloading with practical illustrations.

InitializationJavaconstructor
0 likes · 7 min read
Java Constructors, Initialization, and Method Overloading Explained
Java Captain
Java Captain
Apr 11, 2018 · Fundamentals

Understanding Java Object Members, Methods, and Initialization

This tutorial explains how Java methods access object data members, the role of the implicit this reference, parameter passing, calling other methods within the same object, and both default and explicit initialization of class fields, using clear code examples throughout.

InitializationJavaMethods
0 likes · 5 min read
Understanding Java Object Members, Methods, and Initialization
Java Captain
Java Captain
Jan 29, 2018 · Fundamentals

Understanding the Lifecycle of Java Classes in the JVM

This article explains the complete lifecycle of a Java class within the JVM, covering memory areas such as the method, heap, and stack regions, and detailing the five stages—loading, linking, initialization, usage, and unloading—along with code examples illustrating active and passive references.

Class LoadingInitializationJVM
0 likes · 16 min read
Understanding the Lifecycle of Java Classes in the JVM
Java Captain
Java Captain
Nov 4, 2017 · Fundamentals

Understanding Java Class Loading, Verification, Preparation, and Initialization

This article explains the Java Virtual Machine's class loading lifecycle—including loading, verification, preparation, resolution, and initialization—illustrated with multiple code examples that show when static blocks and fields are executed and why certain classes may not be initialized.

Class LoadingInitializationJVM
0 likes · 13 min read
Understanding Java Class Loading, Verification, Preparation, and Initialization
Tencent Cloud Developer
Tencent Cloud Developer
Feb 5, 2017 · Frontend Development

Analysis of Vue.js 2.0 Initialization and Rendering Logic

Vue.js 2.0 initializes a component via the _init method, merges options, and mounts it with $mount, which creates a render function—whether from a custom function, template, or element—producing a Virtual DOM VNode that the patch algorithm diffs against the previous VNode to efficiently update the real DOM.

InitializationRenderingVirtual DOM
0 likes · 8 min read
Analysis of Vue.js 2.0 Initialization and Rendering Logic