Fading Coder

One Final Commit for the Last Sprint

Dynamic Table Name Replacement Using MyBatis Interceptors

Business ScenarioFor systems anticipating high data volume growth, database sharding is a common strategy to maintain performance. A typical approach involves appending suffixes to table names (e.g., converting app_user to app_user_202201) to distribute data. To implement this transparently without...

Exporting CSV Files in Java Applications

CSV (Comma-Separated Values) represents a widely adopted data format for storing tabular information in plain text files. When developing Java applications, there are scenarios where you need to generate CSV output from your application data. This guide demonstrates various approaches to create CSV...

Configuring Server-Side View Rendering with ModelAndView in Spring Boot

Enabling server-side view rendering in Spring Boot requires configuring a view resolver that maps logical names returned from controllers to physical template files. The setup involves updating project dependencies, adjusting the application entry point for external container compatibility, defining...

Dynamically Invoking Interface Methods Using Java Reflection

Reflection enables runtime examination and dynamic invocation of class members. This technique can be applied to invoke methods defined by an interface through a concrete implementation class. Core Implementation Steps The process involves several distinct stages. Step Action 1 Define the interface....

Implementing PDF File Transfer Mechanisms in Java

Java applications support multiple strategies for moving PDF binaries, ranging from standard stream operations to asynchronous network frameworks. Selection depends on whether the transfer occurs locally within the filesystem or across a network connection. Native NIO File Copying The java.nio.file...

Anatomy of a Java Class File: Byte-Level Breakdown with HelloWorld

A Java class file is a binary stream of bytes following a strict layout defined by the JVM specification. Each section of the file carries precise class metadata. This analysis walks through the structure using a compiled HelloWorld.class file as a concrete example. Overall Structure The top-level s...

Spring Boot Fundamentals: Configuration, Integration, and Testing

Spring Boot Core Features Spring Boot simplifies Spring application development through three key features: Auto-configuration: Automatically configures Spring applications based on dependencies present Starter Dependencies: Bundles common dependencies for specific functionalities Production-ready F...

Fundamentals of Java Network Programming

Network programming in Java involves three core components: IP addresses, port numbers, and communication protocols. IP Address An IP address uniquely identifies a device on a network. The loopback address 127.0.0.1 represents the local machine. Port Number Port numbers distinguish between different...

Implementing a Minesweeper Game in Java with BFS Algorithm

Data Structure Design The core data structure for the game is encapsulated in a global class called Data, wich stores all game-related information as static variables. This design allows for a single game instance to run at a time. The main data fields include: status: Represents the game state (e.g...

Working with Java I/O: Byte and Character Streams along with Buffering

A typical I/O stream operation involves three steps: declaring exceptions, performing read/write actions, and closing resources (always close in reverse order of opening). Byte Streams Byte streams are preferred for copying any type of file, though they aren't recommended for reading Chinese charact...