You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Minimally, each optimization should be documented. Currently we have the @AOTModule which provides optimization metadata:
@AOTModule(
id = NativeStaticServiceLoaderSourceGenerator.ID,
description = AbstractStaticServiceLoaderSourceGenerator.DESCRIPTION,
options = {
@Option(
key = "service.types",
description = "The list of service types to be scanned (comma separated)",
sampleValue = AbstractStaticServiceLoaderSourceGenerator.DEFAULT_SERVICE_TYPES
),
@Option(
key = "serviceloading.rejected.impls",
description = "A list of implementation types which shouldn't be included in the final application (comma separated)",
sampleValue = "com.Misc,org.Bar"
),
@Option(
key = "serviceloading.force.include.impls",
description = "A list of implementation types to include even if they don't match bean requirements (comma separated)",
sampleValue = "com.Misc,org.Bar"
),
@Option(
key = Environments.POSSIBLE_ENVIRONMENTS_NAMES,
description = Environments.POSSIBLE_ENVIRONMENTS_DESCRIPTION,
sampleValue = Environments.POSSIBLE_ENVIRONMENTS_SAMPLE
)
},
enabledOn = Runtime.NATIVE,
subgenerators = {YamlPropertySourceGenerator.class}
)
This provides samples which are used by the sample generation task. But ideally, we should also provide some documentation which could be used by a documentation generator, similarly to what is done with configuration properties in Micronaut Core.
The text was updated successfully, but these errors were encountered:
Feature description
Minimally, each optimization should be documented. Currently we have the
@AOTModule
which provides optimization metadata:This provides samples which are used by the sample generation task. But ideally, we should also provide some documentation which could be used by a documentation generator, similarly to what is done with configuration properties in Micronaut Core.
The text was updated successfully, but these errors were encountered: