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/configuration.html
-- Configuring the DLC
test ../../ test dlc-overview/configuration/data-sources.html
-- DLC Data Sources
test ../../ test dlc-overview/configuration/data-source-real-time.html
-- DLC Real-Time Data Sources
test ../../ test dlc-overview/configuration/restful-config.html
-- Configuring the DLC REST Service
test ../../ test dlc-overview/configuration/dlc-requests.html
-- DLC RESTful Service
test ../../ test dlc-overview/transactions.html
-
DLC Transactions
test ../../ test dlc-overview/responses.html
-
DLC Responses
test ../../ test dlc-overview/design-and-customizations.html
-
DLC Design and Customizations
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 >)/
See for more information on where the service is located and ways to invoke it in the Transactions page.