Znalazłem tutorial o wiosennym REST usługi OAuth na https://github.com/royclarkson/spring-rest-service-oauthJak skonfigurować Wiosna bezpieczeństwo sklep OAuth 2.0 klienta do bazy
Ale zastanawiam się, jak skonfigurować klienta zapisany do bazy danych, więc może uda mi łatwo. w tutorialu konfiguracji klient sklepu WEW na klasy OAuth2ServerConfiguration.java
@Override
public void configure(ClientDetailsServiceConfigurer clients)
throws Exception {
// @formatter:off
clients.inMemory().withClient("clientapp")
.authorizedGrantTypes("password", "refresh_token")
.authorities("USER").scopes("read", "write")
.resourceIds(RESOURCE_ID).secret("123456");
// @formatter:on
}
Nie jestem pewien, czy połączenie z kodem źródłowym jest najbardziej pomocnym sposobem udzielenia odpowiedzi na pytanie, jak coś wdrożyć. – SunshinyDoyle