List of usage examples for org.springframework.security.oauth2.config.annotation.configurers ClientDetailsServiceConfigurer jdbc
public JdbcClientDetailsServiceBuilder jdbc(DataSource dataSource) throws Exception
From source file:com.companyname.PlatOauth2AuthServerConfig.java
@Override public void configure(ClientDetailsServiceConfigurer clients) throws Exception { logger.info("inside AuthorizationServerConfiguration.configure(...)"); clients.jdbc(appDataSource).clients(clientDetailsService()); }