Java Architect Essentials
Author

Java Architect Essentials

Committed to sharing quality articles and tutorials to help Java programmers progress from junior to mid-level to senior architect. We curate high-quality learning resources, interview questions, videos, and projects from across the internet to help you systematically improve your Java architecture skills. Follow and reply '1024' to get Java programming resources. Learn together, grow together.

1.1k
Articles
0
Likes
2.3k
Views
0
Comments
Recent Articles

Latest from Java Architect Essentials

100 recent articles max
Java Architect Essentials
Java Architect Essentials
Mar 23, 2026 · Databases

When MySQL Auto‑Increment Hits Its Limit: Diagnosis and Fixes

A backend engineer discovers that a massive MySQL table’s auto‑increment INT primary key reached its maximum value, causing insert failures, and walks through detailed analysis, three remediation options—including switching to BIGINT, redesigning IDs, and sharding—plus practical scripts, performance measurements, and lessons learned about concurrency and schema design.

BIGINTConcurrencyDatabase Migration
0 likes · 10 min read
When MySQL Auto‑Increment Hits Its Limit: Diagnosis and Fixes
Java Architect Essentials
Java Architect Essentials
Mar 21, 2026 · Operations

Turn a Raspberry Pi Zero W into a Mini Web Server: Complete Step‑by‑Step Guide

This guide walks you through the entire process of setting up a Raspberry Pi Zero W—from understanding the hardware and its specifications, flashing Raspbian Stretch Lite, configuring SSH and Wi‑Fi, optimizing the system, installing Nginx, to exposing the server publicly via ngrok—providing all commands, configuration files, and troubleshooting tips.

IoTLinuxNginx
0 likes · 14 min read
Turn a Raspberry Pi Zero W into a Mini Web Server: Complete Step‑by‑Step Guide
Java Architect Essentials
Java Architect Essentials
Mar 19, 2026 · Backend Development

Boost Java Code Quality: A Complete Guide to Alibaba Guidelines, CheckStyle, PMD, FindBugs & SonarLint

This article introduces five essential Java static‑analysis tools—Alibaba Java Coding Guidelines, CheckStyle, PMD, FindBugs, and SonarLint—explaining their purpose, installation steps, usage methods, result interpretation, and configuration tips to help developers improve code quality and reduce review effort.

checkstylecode qualityfindbugs
0 likes · 13 min read
Boost Java Code Quality: A Complete Guide to Alibaba Guidelines, CheckStyle, PMD, FindBugs & SonarLint
Java Architect Essentials
Java Architect Essentials
Dec 3, 2025 · Backend Development

How to Implement Data Isolation in Spring Boot with MyBatis Interceptor and JSqlParser

This guide shows how to achieve multi‑tenant data isolation in a Spring Boot application by creating a MyBatis interceptor that modifies SQL statements using JSqlParser, covering dependency setup, interceptor implementation, testing, and the rationale for intercepting the StatementHandler.prepare method.

Data IsolationJSqlParserMulti‑Tenant
0 likes · 14 min read
How to Implement Data Isolation in Spring Boot with MyBatis Interceptor and JSqlParser
Java Architect Essentials
Java Architect Essentials
Nov 28, 2025 · Operations

Master Jenkins Declarative and Scripted Pipelines: A Complete Guide

This article provides a comprehensive, step‑by‑step tutorial on Jenkins pipelines, covering the differences between declarative and scripted syntax, detailed explanations of agents, stages, steps, post actions, parameters, triggers, conditional execution, parallel builds, environment variables, and credential handling, with full code examples for each feature.

CI/CDDeclarative PipelineDevOps
0 likes · 25 min read
Master Jenkins Declarative and Scripted Pipelines: A Complete Guide