Example usage for org.springframework.boot.jdbc DataSourceBuilder DataSourceBuilder

List of usage examples for org.springframework.boot.jdbc DataSourceBuilder DataSourceBuilder

Introduction

In this page you can find the example usage for org.springframework.boot.jdbc DataSourceBuilder DataSourceBuilder.

Prototype

private DataSourceBuilder(ClassLoader classLoader) 

Source Link

Usage

From source file:org.springframework.boot.jdbc.DataSourceBuilder.java

public static DataSourceBuilder<?> create() {
    return new DataSourceBuilder<>(null);
}

From source file:org.springframework.boot.jdbc.DataSourceBuilder.java

public static DataSourceBuilder<?> create(ClassLoader classLoader) {
    return new DataSourceBuilder<>(classLoader);
}