Package io.quarkus.datasource.runtime
Class DataSourceBuildTimeConfig
- java.lang.Object
-
- io.quarkus.datasource.runtime.DataSourceBuildTimeConfig
-
public class DataSourceBuildTimeConfig extends Object
-
-
Field Summary
Fields Modifier and Type Field Description Optional<String>dbKindThe kind of database we will connect to (e.g.DevServicesBuildTimeConfigdevservicesConfiguration for DevServices.booleanhealthExcludeWhether this particular data source should be excluded from the health check if the general health check for data sources is enabled.
-
Constructor Summary
Constructors Constructor Description DataSourceBuildTimeConfig()
-
-
-
Field Detail
-
dbKind
@ConfigItem @ConvertWith(DatabaseKindConverter.class) public Optional<String> dbKind
The kind of database we will connect to (e.g. h2, postgresql...).
-
devservices
@ConfigItem public DevServicesBuildTimeConfig devservices
Configuration for DevServices. DevServices allows Quarkus to automatically start a database in dev and test mode.
-
healthExclude
@ConfigItem(defaultValue="false") public boolean healthExclude
Whether this particular data source should be excluded from the health check if the general health check for data sources is enabled.By default, the health check includes all configured data sources (if it is enabled).
-
-