NOTE: Forked from Spring Boot logic to avoid hard dependency on Boot.
Convenience class for building a javax.sql.DataSource with common implementations and
properties. If Tomcat, HikariCP or Commons DBCP are on the classpath one of them will
be selected (in that order with Tomcat first). In the interest of a uniform interface,
and so that there can be a fallback to an embedded database if one can be detected on
the classpath, only a small set of common configuration properties are supported. To
inject additional properties into the result you can downcast it, or use
@ConfigurationProperties
.
Modifiers | Name | Description |
---|---|---|
protected static class |
DataSourceBuilder.ReadOnlyDriverManagerDataSource |
Constructor and description |
---|
DataSourceBuilder
(java.lang.ClassLoader classLoader) |
Type Params | Return Type | Name and description |
---|---|---|
|
javax.sql.DataSource |
build() |
|
static DataSourceBuilder |
create() |
|
static DataSourceBuilder |
create(java.lang.ClassLoader classLoader) |
|
DataSourceBuilder |
driverClassName(java.lang.String driverClassName) |
|
java.lang.Class<? extends javax.sql.DataSource> |
findType() |
|
DataSourceBuilder |
password(java.lang.String password) |
|
DataSourceBuilder |
properties(java.util.Map<java.lang.String, java.lang.String> properties) |
|
void |
setPooled(boolean pooled) |
|
void |
setReadOnly(boolean readOnly) |
|
DataSourceBuilder |
type(java.lang.Class<? extends javax.sql.DataSource> type) |
|
DataSourceBuilder |
url(java.lang.String url) |
|
DataSourceBuilder |
username(java.lang.String username) |
Methods inherited from class | Name |
---|---|
class java.lang.Object |
java.lang.Object#wait(long, int), java.lang.Object#wait(long), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |