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 1, 2025 · Backend Development

Mastering Java 8 Functional Interfaces: Cleaner Code with Function, Supplier, Consumer & Runnable

This article explains Java 8's functional interfaces—including Function, Supplier, Consumer, and Runnable—showing how to replace verbose if‑else and exception handling with concise lambda expressions, and provides reusable utility interfaces for branching, present‑or‑else logic, and exception throwing.

Functional InterfaceLambdajava8
0 likes · 6 min read
Mastering Java 8 Functional Interfaces: Cleaner Code with Function, Supplier, Consumer & Runnable
Java Backend Technology
Java Backend Technology
Aug 25, 2025 · R&D Management

Should You Join an IT Outsourcing Team? Pros, Cons, and How to Choose

This article explains what IT outsourcing is, compares two‑party and three‑party contracts, outlines the advantages and disadvantages for developers, and offers practical advice on selecting the right outsourcing role based on career goals, salary expectations, and learning opportunities.

IT careercareer advicecontract types
0 likes · 18 min read
Should You Join an IT Outsourcing Team? Pros, Cons, and How to Choose
Java Backend Technology
Java Backend Technology
Aug 22, 2025 · Backend Development

How Jeandle’s LLVM‑Powered JIT Could Revolutionize Java Performance

Jeandle, the new open‑source LLVM‑based JIT compiler released by Ant Group, aims to boost Java performance by integrating LLVM’s optimization capabilities into the JVM, explaining JIT and LLVM fundamentals, its architecture, and an ambitious roadmap toward full bytecode support and advanced optimizations.

CompilerJITJVM
0 likes · 6 min read
How Jeandle’s LLVM‑Powered JIT Could Revolutionize Java Performance
Java Backend Technology
Java Backend Technology
Aug 15, 2025 · Backend Development

Simplify Java Stream Processing with JDFrame – A JVM‑Level DataFrame Library

This article introduces JDFrame, a JVM‑level DataFrame‑style library that provides a more expressive, SQL‑like API for Java 8 streams, shows how to add the Maven dependency, demonstrates common operations such as filtering, grouping, sorting, joining, and explains the differences between SDFrame and JDFrame with practical code examples.

JDFrameJavaStream API
0 likes · 19 min read
Simplify Java Stream Processing with JDFrame – A JVM‑Level DataFrame Library
Java Backend Technology
Java Backend Technology
Aug 13, 2025 · Backend Development

Why Stream.toList() Throws UnsupportedOperationException vs collect(Collectors.toList())

This article explains the key differences between Java's Stream toList() method introduced in JDK 16, which returns an unmodifiable list, and the traditional collect(Collectors.toList()) which yields a mutable ArrayList, illustrating behavior with code examples, performance considerations, and practical usage tips.

CollectionsCollectorsImmutable List
0 likes · 8 min read
Why Stream.toList() Throws UnsupportedOperationException vs collect(Collectors.toList())