Add a property (name/value pair) that will be used to configure the Hikari CP DataSource
/ JDBC Driver
.
In the case of a DataSource
, the property names should be prefixed by dataSource.
, these properties
will be translated to Java setters following the Java Bean naming convention.
For example, the property dataSource.cachePrepStmts
will translate into setCachePrepStmts()
with the value
passed as a parameter. See details on
Hikari CP.
In the case of a Driver
, the property will be added to a Properties
instance that will
be passed to the driver during java.sql.Driver#connect(String, Properties) calls.
For MySQL/MariaDB connections, the Pipeline Maven Plugin will uses by default the settings recommended in Hikari CP / MySQL Configuration. To overwrite these settings, define the desired settings in the properties text area with different values.
For other databases than MySQL/MariaDB, we use the default settings of the Hikari CP data source.