Java Backend Technology
Author

Java Backend Technology

Focus on Java-related technologies: SSM, Spring ecosystem, microservices, MySQL, MyCat, clustering, distributed systems, middleware, Linux, networking, multithreading. Occasionally cover DevOps tools like Jenkins, Nexus, Docker, and ELK. Also share technical insights from time to time, committed to Java full-stack development!

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

Latest from Java Backend Technology

100 recent articles max
Java Backend Technology
Java Backend Technology
Sep 28, 2025 · Artificial Intelligence

Can AI Interviewers Redefine Software Engineer Hiring?

The article examines Meituan’s pioneering use of AI interviewers and the NoCode product, explains the emerging “Vibe Coding” approach, and argues that future software engineering interviews should assess candidates’ ability to collaborate with AI tools rather than merely memorizing algorithms.

AI InterviewMeituanVibe Coding
0 likes · 9 min read
Can AI Interviewers Redefine Software Engineer Hiring?
Java Backend Technology
Java Backend Technology
Sep 15, 2025 · Backend Development

How to Dynamically Load External JARs into SpringBoot and Scan Them

This guide explains how to load external JAR files into the JVM, configure SpringBoot to recognize them, and choose among several class‑loading strategies—including expanding the classpath, using the loader.path parameter, or implementing a custom classloader—while providing Maven configuration examples and code snippets.

Custom ClassLoaderDynamic ConfigurationJava
0 likes · 9 min read
How to Dynamically Load External JARs into SpringBoot and Scan Them
Java Backend Technology
Java Backend Technology
Sep 12, 2025 · Backend Development

Avoid Hidden SpringBoot Pitfalls: Optimize Default Configurations for Production

This article reveals how SpringBoot's out‑of‑the‑box defaults—such as Tomcat connection limits, HikariCP pool size, JPA lazy loading, Jackson timezone handling, logging, file upload limits, async thread pools, static resource caching, and transaction timeouts—can cause performance bottlenecks and stability issues in production, and provides concrete configuration recommendations to prevent them.

Optimization
0 likes · 12 min read
Avoid Hidden SpringBoot Pitfalls: Optimize Default Configurations for Production
Java Backend Technology
Java Backend Technology
Sep 10, 2025 · Databases

8 Proven MySQL Tricks to Supercharge Query Performance

This article walks through eight practical MySQL optimization techniques—including smarter LIMIT usage, avoiding implicit type conversion, rewriting UPDATE/DELETE with JOINs, handling mixed sorting, replacing EXISTS with joins, pushing predicates, narrowing result sets early, and leveraging WITH clauses—to dramatically reduce query execution time from seconds to milliseconds.

Performance tuningQuery Planningdatabase indexing
0 likes · 13 min read
8 Proven MySQL Tricks to Supercharge Query Performance
Java Backend Technology
Java Backend Technology
Sep 8, 2025 · Backend Development

How to Track Online Users with Redis ZSET: A Step‑by‑Step Guide

This article explains how to implement an online‑user counting feature using Redis sorted sets (zset) by leveraging the four core commands zadd, zrangeByScore, zremrangeByScore, and zrem, with Java/Spring code examples and optional browser‑fingerprinting for unauthenticated visitors.

JavaOnline UsersRedis
0 likes · 7 min read
How to Track Online Users with Redis ZSET: A Step‑by‑Step Guide
Java Backend Technology
Java Backend Technology
Sep 4, 2025 · Backend Development

How to Refresh Spring Boot Config at Runtime Without Restart

This guide explains why traditional Java apps require restarts for config changes, introduces Spring Boot's @RefreshScope for hot configuration updates, details its core principles, provides step‑by‑step implementation, best practices, troubleshooting tips, and advanced use cases such as dynamic feature toggles and logging level adjustments.

0 likes · 10 min read
How to Refresh Spring Boot Config at Runtime Without Restart