Package io.quarkus.mongodb.deployment
Class DevServicesBuildTimeConfig
- java.lang.Object
-
- io.quarkus.mongodb.deployment.DevServicesBuildTimeConfig
-
public class DevServicesBuildTimeConfig extends Object
-
-
Field Summary
Fields Modifier and Type Field Description Optional<Boolean>enabledIf DevServices has been explicitly enabled or disabled.Optional<String>imageNameThe container image name to use, for container based DevServices providers.Optional<Integer>portOptional fixed port the dev service will listen to.Map<String,String>propertiesGeneric properties that are added to the connection URL.
-
Constructor Summary
Constructors Constructor Description DevServicesBuildTimeConfig()
-
-
-
Field Detail
-
enabled
@ConfigItem public Optional<Boolean> enabled
If DevServices has been explicitly enabled or disabled. DevServices is generally enabled by default, unless there is an existing configuration present. When DevServices is enabled Quarkus will attempt to automatically configure and start a database when running in Dev or Test mode.
-
imageName
@ConfigItem public Optional<String> imageName
The container image name to use, for container based DevServices providers.
-
port
@ConfigItem public Optional<Integer> port
Optional fixed port the dev service will listen to.If not defined, the port will be chosen randomly.
-
-