Navigation :
test ../../ test data-connectors-overview.html
Data Connectors Overview
test ../../ test data-connectors-overview/whats-new.html
- What's New
test ../../ test changelog.html
Release and migration notes
test ../../ test dee-overview.html
Data Extraction Engine
test ../../ test dlc-overview.html
Data Load Controller
test ../../ test dlc-overview/configuration.html
-
DLC Configuration
test ../../ test dlc-overview/configuration/required-prerequisites.html
-- Required Prerequisites
test ../../ test dlc-overview/configuration/controller-config.html
-- Controller Configuration
test ../../ test dlc-overview/configuration/data-source-configuration.html
--
DLC Data Source Configuration
test ../../ test dlc-overview/configuration/restful-config.html
-- Configuring the DLC REST Service
test ../../ test dlc-overview/configuration/dlc-cache.html
-- DLC Cache Config
test ../../ test dlc-overview/user-guide.html
-
User Guide
test ../../ test dlc-overview/dlc-extensions.html
-
DLC Extensions
Configuring the DLC REST Service
In order to expose the DLC REST endpoint in your application, add
the below Spring Configuration
extending ADataLoadControllerRestServiceConfig
and implementing getDataLoadControllerInstance()
method.
@Configuration
public class DataLoadControllerRestServiceConfig extends ADataLoadControllerRestServiceConfig {
@Autowired
protected ADataLoadControllerConfig dataLoadControllerConfig;
@Override
public IDataLoadController getDataLoadControllerInstance () {
return dataLoadControllerConfig. dataLoadController ();
}
}
Then simply import the DataLoadControllerRestServiceConfig
in your application’s Spring Java Config.
Base REST Endpoint
This will Create an endpoint at the following location (excluding host and port):
<localhost:8080 >/services/connectors/rest/dee/<DLC_REST_Version >)/