@Configuration(proxyBeanMethods=false)
@ConditionalOnClass(value=io.r2dbc.spi.ConnectionFactory.class)
@AutoConfigureBefore(value=DataSourceAutoConfiguration.class)
@EnableConfigurationProperties(value=R2dbcProperties.class)
@Import(value={org.springframework.boot.autoconfigure.r2dbc.ConnectionFactoryConfigurations.Pool.class,org.springframework.boot.autoconfigure.r2dbc.ConnectionFactoryConfigurations.Generic.class,org.springframework.boot.autoconfigure.r2dbc.ConnectionFactoryDependentConfiguration.class})
public class R2dbcAutoConfiguration
extends Object
- Since:
- 2.3.0
- Author:
- Mark Paluch, Stephane Nicoll