Class JooqProperties
java.lang.Object
org.springframework.boot.jooq.autoconfigure.JooqProperties
Configuration properties for the jOOQ database library.
- Since:
- 4.0.0
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.jooq.SQLDialectdetermineSqlDialect(DataSource dataSource) Determine theSQLDialectto use based on this configuration and the primaryDataSource.@Nullable org.springframework.core.io.Resource@Nullable org.jooq.SQLDialectvoidsetConfig(@Nullable org.springframework.core.io.Resource config) voidsetSqlDialect(@Nullable org.jooq.SQLDialect sqlDialect)
-
Constructor Details
-
JooqProperties
public JooqProperties()
-
-
Method Details
-
getSqlDialect
public @Nullable org.jooq.SQLDialect getSqlDialect() -
setSqlDialect
public void setSqlDialect(@Nullable org.jooq.SQLDialect sqlDialect) -
getConfig
public @Nullable org.springframework.core.io.Resource getConfig() -
setConfig
public void setConfig(@Nullable org.springframework.core.io.Resource config) -
determineSqlDialect
Determine theSQLDialectto use based on this configuration and the primaryDataSource.- Parameters:
dataSource- the data source- Returns:
- the
SQLDialectto use for thatDataSource
-