Example usage for org.springframework.jdbc.datasource AbstractDriverBasedDataSource getUrl

List of usage examples for org.springframework.jdbc.datasource AbstractDriverBasedDataSource getUrl

Introduction

In this page you can find the example usage for org.springframework.jdbc.datasource AbstractDriverBasedDataSource getUrl.

Prototype

@Nullable
public String getUrl() 

Source Link

Document

Return the JDBC URL to use for connecting through the Driver.

Usage

From source file:org.cloudfoundry.reconfiguration.spring.MySqlDataSourceCloudServiceBeanFactoryPostProcessorTest.java

private void assertConfiguration(AbstractDriverBasedDataSource dataSource, String url) {
    assertEquals(url, dataSource.getUrl());
}