Class SmallRyeHealthUIConfig
- java.lang.Object
-
- io.quarkus.smallrye.health.deployment.SmallRyeHealthUIConfig
-
public class SmallRyeHealthUIConfig extends Object
-
-
Field Summary
Fields Modifier and Type Field Description (package private) booleanalwaysIncludeAlways include the UI.(package private) StringrootPathThe path where Health UI is available.
-
Constructor Summary
Constructors Constructor Description SmallRyeHealthUIConfig()
-
-
-
Field Detail
-
rootPath
@ConfigItem(defaultValue="health-ui") String rootPath
The path where Health UI is available. The value `/` is not allowed as it blocks the application from serving anything else. By default, this value will be resolved as a path relative to `${quarkus.http.non-application-root-path}`.
-
alwaysInclude
@ConfigItem(defaultValue="false") boolean alwaysInclude
Always include the UI. By default, this will only be included in dev and test. Setting this to true will also include the UI in Prod
-
-