Tagged articles

javadoc

20 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
Shepherd Advanced Notes
Shepherd Advanced Notes
Feb 4, 2026 · Backend Development

Mastering Java Code Comments: The Ultimate Guide to High‑Quality, Readable, Architecture‑Level Documentation

The article explains why high‑quality Javadoc is essential for enterprise‑level Java backend projects, walks through the most common Javadoc tags and HTML elements, provides concrete code examples—including @param, @return, @throws, @see, @deprecated—and shows how thorough comments improve readability, maintainability, and serve as a catalyst for refactoring.

Backend DevelopmentJavabest practices
0 likes · 14 min read
Mastering Java Code Comments: The Ultimate Guide to High‑Quality, Readable, Architecture‑Level Documentation
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
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 Annotationsannotationsjavadoc
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.

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