Tagged articles
19 articles
Page 1 of 1
Java Architecture Diary
Java Architecture Diary
May 22, 2026 · Artificial Intelligence

What the Javadocs MCP Server Solves for Java AI Development

AI code assistants often misinterpret Java library placeholders because they rely on web searches or bytecode decompilation, which miss Javadoc details; the Javadocs MCP server indexes Maven Central Javadocs, letting AI retrieve accurate method signatures and placeholder rules, and can be added to Claude Code with a simple configuration.

AIClaudeHutool
0 likes · 7 min read
What the Javadocs MCP Server Solves for Java AI Development
Top Architecture Tech Stack
Top Architecture Tech Stack
May 7, 2024 · Backend Development

How to Create Custom Javadoc Live Templates in IntelliJ IDEA for Java

This guide explains step‑by‑step how to configure IntelliJ IDEA’s Live Templates to automatically generate Javadoc comments for Java methods, including creating a custom template group, defining variables, setting scope, and showcasing useful Java‑8 snippets, while also noting promotional offers for activation tools.

IDE TipsIntelliJ IDEAJava
0 likes · 6 min read
How to Create Custom Javadoc Live Templates in IntelliJ IDEA for Java
JD Retail Technology
JD Retail Technology
Jan 5, 2023 · Mobile Development

Design and Implementation of an Android Code Impact Analysis Tool Using Git Diff and ASM

This article presents a comprehensive approach to building an Android code impact analysis tool that leverages Git diff to locate modified lines, employs ASM-based class and method visitors to construct upward and downward call chains, extracts Javadoc and custom tags, and visualizes the results for developers and testers.

ASMAndroidGradle
0 likes · 21 min read
Design and Implementation of an Android Code Impact Analysis Tool Using Git Diff and ASM
Selected Java Interview Questions
Selected Java Interview Questions
Jun 12, 2022 · Fundamentals

Understanding Java Annotations: Concepts, Built‑in Annotations, Custom Annotations, and a Simple Test Framework

This article explains the purpose and syntax of Java annotations, describes built‑in annotations such as @Override, @Deprecated and @SuppressWarnings, shows how to create and use custom annotations with meta‑annotations, and demonstrates a lightweight testing framework that records annotation‑driven test failures.

Custom AnnotationsJavadocannotations
0 likes · 11 min read
Understanding Java Annotations: Concepts, Built‑in Annotations, Custom Annotations, and a Simple Test Framework
Architect's Tech Stack
Architect's Tech Stack
Aug 21, 2021 · Backend Development

Configuring Class and Method Javadoc Templates in IntelliJ IDEA

This guide explains how to set up IntelliJ IDEA templates to automatically generate class and method Javadoc comments, including adding author and date placeholders, creating live templates for @param and @return annotations, and customizing variable expressions with Groovy scripts.

AutomationIntelliJ IDEAJava
0 likes · 6 min read
Configuring Class and Method Javadoc Templates in IntelliJ IDEA
Code Ape Tech Column
Code Ape Tech Column
Mar 22, 2021 · Fundamentals

Auto‑Generate Class and Method Javadoc Templates in IntelliJ IDEA

This guide walks you through configuring IntelliJ IDEA to automatically insert class‑level and method‑level Javadoc comments using File and Code Templates and Live Templates, including GroovyScript expressions for dynamic @author, @date, @param, and @return tags.

GroovyScriptIDE configurationIntelliJ IDEA
0 likes · 8 min read
Auto‑Generate Class and Method Javadoc Templates in IntelliJ IDEA
21CTO
21CTO
May 2, 2019 · Fundamentals

Master Google’s Java Style Guide: Essential Rules for Clean Code

This document defines the complete Google Java Style Guide, detailing file naming, structure, formatting, naming conventions, and best‑practice recommendations—including whitespace, braces, imports, annotations, Javadoc, and exception handling—to ensure Java source files conform to Google’s coding standards.

Best PracticesJavaJavadoc
0 likes · 35 min read
Master Google’s Java Style Guide: Essential Rules for Clean Code