Architect's Tech Stack
Author

Architect's Tech Stack

Java backend, microservices, distributed systems, containerized programming, and more.

595
Articles
0
Likes
1.3k
Views
0
Comments
Recent Articles

Latest from Architect's Tech Stack

100 recent articles max
Architect's Tech Stack
Architect's Tech Stack
Nov 20, 2025 · Backend Development

Quickly Detect and Resolve Maven Dependency Conflicts in IntelliJ

This guide shows how to view the Maven dependency tree in IntelliJ, use the mvn dependency:tree command, leverage the Maven Helper plugin, identify conflicting JARs, and resolve them with exclusion rules or dependencyManagement to ensure the correct versions are used.

Build ToolDependency ConflictIntelliJ
0 likes · 6 min read
Quickly Detect and Resolve Maven Dependency Conflicts in IntelliJ
Architect's Tech Stack
Architect's Tech Stack
Nov 14, 2025 · Databases

8 MySQL Optimizations to Slash Query Times from Seconds to Milliseconds

This article presents eight practical MySQL performance‑tuning techniques—including smarter LIMIT usage, avoiding implicit type conversion, rewriting updates and deletes with JOIN, handling mixed ordering, replacing EXISTS with JOIN, pushing conditions down, early range reduction, and using WITH clauses—to transform slow queries into millisecond‑level executions.

IndexesMySQLPerformance Tuning
0 likes · 14 min read
8 MySQL Optimizations to Slash Query Times from Seconds to Milliseconds
Architect's Tech Stack
Architect's Tech Stack
Nov 11, 2025 · Artificial Intelligence

Tackling AI Agent Development Pain Points with Spring AI Alibaba Admin

Spring AI Alibaba Admin is an Alibaba‑built platform that extends Spring AI to address three major engineering hurdles—inefficient prompt debugging, uncertain AI quality, and opaque production operations—by offering comprehensive prompt, dataset, evaluator, experiment, observability, and model‑configuration capabilities for enterprise AI agents.

AI AgentAlibabaPrompt Management
0 likes · 8 min read
Tackling AI Agent Development Pain Points with Spring AI Alibaba Admin
Architect's Tech Stack
Architect's Tech Stack
Nov 11, 2025 · Cloud Native

Discover 10 Must-Have Docker Images to Supercharge Your Development

This guide curates a selection of useful Docker images—including code‑server, CloudBeaver, QingLong, PocketBase, Homer, Uptime‑Kuma, Memos, Umami, Flame, Filebrowser, and Dockge—detailing their key features, recommended use cases, and ready‑to‑run Docker and docker‑compose commands to streamline development, monitoring, and personal workflows.

Container ImagesDevOpsDocker
0 likes · 17 min read
Discover 10 Must-Have Docker Images to Supercharge Your Development
Architect's Tech Stack
Architect's Tech Stack
Nov 5, 2025 · Backend Development

Master Java Generics: Why T, E, K, V, and ? Matter and How to Use Them

This article explains the purpose of Java generics, the differences between type parameters like T, E, K, V and wildcards ?, demonstrates non‑generic versus generic implementations with concrete code examples, and introduces the PECS principle for choosing appropriate wildcards in production code.

GenericsPECSType Parameters
0 likes · 11 min read
Master Java Generics: Why T, E, K, V, and ? Matter and How to Use Them
Architect's Tech Stack
Architect's Tech Stack
Nov 5, 2025 · Backend Development

How to Build a Conditional Multi‑DataSource Spring Boot Starter to Eliminate Dubbo Bottlenecks

This article walks through creating a custom Spring Boot starter that uses conditional auto‑configuration to provide primary and secondary data sources, DAOs, and services, enabling high‑frequency Dubbo calls to be replaced with direct database access and dramatically improving performance.

Conditional BeansDubboSpring Boot
0 likes · 13 min read
How to Build a Conditional Multi‑DataSource Spring Boot Starter to Eliminate Dubbo Bottlenecks