Package io.quarkus.runtime.annotations
Annotation Interface ConfigDocSection
@Documented
@Retention(RUNTIME)
@Target({FIELD,PARAMETER,METHOD})
public @interface ConfigDocSection
A marker indicating that the configuration item
ConfigItem
should be generated as a section.
The section will be generated only if the configuration item type is annotated with ConfigGroup
-
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionboolean
If we should generate a specific file for this section.
-
Element Details
-
generated
boolean generatedIf we should generate a specific file for this section.We used to do it for all config groups before but it's counterproductive. The new annotation processor only generates a file for a config group if this is true.
- Default:
- false
-