Java One
Author

Java One

Sharing common backend development knowledge.

49
Articles
0
Likes
67
Views
0
Comments
Recent Articles

Latest from Java One

49 recent articles
Java One
Java One
Mar 27, 2026 · Operations

Automate Code Reviews with Claude Code: GitHub Integration Guide

This step‑by‑step tutorial shows how to integrate Claude Code with GitHub, configure the required GitHub App, set up GitHub Actions workflows for Issue mentions and Pull Request reviews, add necessary secrets, customize prompts, and adapt the setup for GLM models, turning Claude into an automated code‑review assistant.

AI code reviewClaudeGitHub Actions
0 likes · 10 min read
Automate Code Reviews with Claude Code: GitHub Integration Guide
Java One
Java One
Mar 23, 2026 · Artificial Intelligence

Master Claude Code: From Installation to Advanced AI‑Powered Development Workflows

This comprehensive guide walks you through the Claude Certified Architect exam structure, explains how Claude Code turns a language model into a full‑featured programming assistant, details installation on macOS, Linux and Windows, demonstrates tool‑use mechanics, context management, custom commands, and extending functionality with MCP servers such as Playwright.

AIClaudeMCP
0 likes · 27 min read
Master Claude Code: From Installation to Advanced AI‑Powered Development Workflows
Java One
Java One
Jan 24, 2026 · Artificial Intelligence

Master Claude Code: Unlock AI‑Powered Terminal Coding

This guide explains Claude Code’s agent loop, model choices, built‑in tool categories, project access scope, session handling, checkpoint and permission controls, and practical tips for efficiently using the AI‑driven terminal assistant to write, test, and refactor code.

AI coding assistantAgent LoopCheckpoint
0 likes · 15 min read
Master Claude Code: Unlock AI‑Powered Terminal Coding
Java One
Java One
Jan 13, 2026 · Backend Development

Master Claude Code: Install, Configure, and Leverage Its Full Power

This guide walks you through installing Claude Code, choosing and purchasing a model package, configuring the server via script or environment variables, switching models, using core commands, and applying its three operation modes to develop a complete project from start to finish.

AI toolsAnthropicBackend Development
0 likes · 13 min read
Master Claude Code: Install, Configure, and Leverage Its Full Power
Java One
Java One
Dec 26, 2025 · Fundamentals

How C/C++, Java, and Python Run: A Deep Dive into Compilation and Execution

This article compares the execution models of C/C++, Java, and Python, explaining how compiled machine code, bytecode with JVM, and interpreted bytecode with the Python virtual machine operate, and illustrates each process with example file structures and compilation steps.

CExecution ModelJava
0 likes · 6 min read
How C/C++, Java, and Python Run: A Deep Dive into Compilation and Execution
Java One
Java One
Dec 23, 2025 · Fundamentals

Master Python Numbers & Strings: Tips, Pitfalls, and Best Practices

This guide covers Python's core numeric and string types—including ints, floats, complex numbers, booleans, and bytes—explains common pitfalls like floating‑point precision, demonstrates formatting options, shows how to use enums and SQLAlchemy for cleaner code, and offers practical advice for readable and efficient scripting.

Best PracticesDecimalEnums
0 likes · 21 min read
Master Python Numbers & Strings: Tips, Pitfalls, and Best Practices
Java One
Java One
Dec 22, 2025 · Backend Development

Injecting Third‑Party Classes in Spring Boot with @Configuration and @Bean

This tutorial explains how to register and inject a third‑party implementation like SwimCoach into a Spring Boot application using a @Configuration class and @Bean methods, covering bean creation, custom IDs, qualifier usage, and practical scenarios such as integrating AWS S3 clients.

awsbeanconfiguration
0 likes · 5 min read
Injecting Third‑Party Classes in Spring Boot with @Configuration and @Bean
Java One
Java One
Dec 12, 2025 · Backend Development

Understanding Spring Bean Scopes: When Singleton Becomes Prototype

This article explains how Spring manages bean instances, compares singleton and prototype scopes with concrete code examples, and shows why two injected beans may be equal or different depending on the @Scope annotation applied to the component class.

Bean ScopeJavaSingleton
0 likes · 3 min read
Understanding Spring Bean Scopes: When Singleton Becomes Prototype
Java One
Java One
Dec 8, 2025 · Backend Development

How to Enable Lazy Initialization for Spring Beans to Boost Startup Performance

This article explains Spring's default eager bean creation, demonstrates how to add @Lazy annotations or a global property to defer bean instantiation until needed, and discusses the benefits and drawbacks of lazy loading with code examples and runtime observations.

backendbeanlazy-initialization
0 likes · 4 min read
How to Enable Lazy Initialization for Spring Beans to Boost Startup Performance