io.micronaut.data.jdbc.config.DataJdbcConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micronaut-data-jdbc Show documentation
Show all versions of micronaut-data-jdbc Show documentation
Data Repository Support for Micronaut
package io.micronaut.data.jdbc.config;
import io.micronaut.context.annotation.EachProperty;
import io.micronaut.context.annotation.Parameter;
import io.micronaut.core.naming.Named;
import io.micronaut.data.model.query.builder.sql.Dialect;
import io.micronaut.data.runtime.config.SchemaGenerate;
import javax.annotation.Nonnull;
import java.util.ArrayList;
import java.util.List;
/**
* Configuration for Data JDBC.
*
* @author graemerocher
* @since 1.0.0
*/
@EachProperty(value = DataJdbcConfiguration.PREFIX, primary = "default")
public class DataJdbcConfiguration implements Named {
/**
* The prefix to use.
*/
public static final String PREFIX = "datasources";
private SchemaGenerate schemaGenerate = SchemaGenerate.NONE;
private boolean batchGenerate = false;
private Dialect dialect = Dialect.ANSI;
private List packages = new ArrayList<>(3);
private final String name;
/**
* The configuration.
* @param name The configuration name
*/
public DataJdbcConfiguration(@Parameter String name) {
this.name = name;
}
/**
* @return The schema generation strategy.
*/
public SchemaGenerate getSchemaGenerate() {
return schemaGenerate;
}
/**
* Sets the schema generation strategy.
* @param schemaGenerate The schema generation strategy.
*/
public void setSchemaGenerate(SchemaGenerate schemaGenerate) {
if (schemaGenerate != null) {
this.schemaGenerate = schemaGenerate;
}
}
/**
* @return Whether to generate tables in batch.
*/
public boolean isBatchGenerate() {
return batchGenerate;
}
/**
* @param batchGenerate Whether to generate tables in batch.
*/
public void setBatchGenerate(boolean batchGenerate) {
this.batchGenerate = batchGenerate;
}
/**
* @return The packages to include use for the purposes of schema generation.
*/
public List getPackages() {
return packages;
}
/**
* Sets the packages to use.
* @param packages The packages
*/
public void setPackages(List packages) {
if (packages != null) {
this.packages = packages;
}
}
/**
* @return The dialect to use.
*/
public Dialect getDialect() {
return dialect;
}
/**
* Sets the dialect.
* @param dialect The dialect
*/
public void setDialect(Dialect dialect) {
this.dialect = dialect;
}
@Nonnull
@Override
public String getName() {
return name;
}
}