Comprehensive collection of prompts and instructions for Java development including Spring Boot, Quarkus, testing, documentation, and best practices.
40
50%
Does it follow best practices?
Impact
—
No eval scenarios have been run
Risky
Do not use without reviewing
@param for method parameters. The description starts with a lowercase letter and does not end with a period.@return for method return values.@throws or @exception to document exceptions thrown by methods.@see for references to other types or members.{@inheritDoc} to inherit documentation from base classes or interfaces.
@param <T> for type parameters in generic types or methods.{@code} for inline code snippets.<pre>{@code ... }</pre> for code blocks.@since to indicate when the feature was introduced (e.g., version number).@version to specify the version of the member.@author to specify the author of the code.@deprecated to mark a member as deprecated and provide an alternative.