Example usage for org.springframework.integration.support.utils IntegrationUtils INTEGRATION_CONVERSION_SERVICE_BEAN_NAME

List of usage examples for org.springframework.integration.support.utils IntegrationUtils INTEGRATION_CONVERSION_SERVICE_BEAN_NAME

Introduction

In this page you can find the example usage for org.springframework.integration.support.utils IntegrationUtils INTEGRATION_CONVERSION_SERVICE_BEAN_NAME.

Prototype

String INTEGRATION_CONVERSION_SERVICE_BEAN_NAME

To view the source code for org.springframework.integration.support.utils IntegrationUtils INTEGRATION_CONVERSION_SERVICE_BEAN_NAME.

Click Source Link

Usage

From source file:org.springframework.cloud.stream.config.BindingServiceProperties.java

@Override
public void afterPropertiesSet() throws Exception {
    if (this.conversionService == null) {
        this.conversionService = this.applicationContext
                .getBean(IntegrationUtils.INTEGRATION_CONVERSION_SERVICE_BEAN_NAME, ConversionService.class);
    }//  www  .j  a v a2  s  .  c om
}