#java #spring #jpa #oauth #spring-boot
#java #весна #jpa #oauth #весенняя загрузка
Вопрос:
Здравствуйте, у меня проблема с обновлением токена в OAuth2.
Чтобы получить новый токен, я использую следующий запрос: {{host}}/oauth/token?grant_type=refresh_tokenamp;refresh_token=[refresh_token_obtained_from_authorization]
Ответ, который я получил, является:
{
"error": "server_error",
"error_description": "UserDetailsService is required."
}
в журналах я вижу:
2016-10-24 23:01:41.166 DEBUG 48384 --- [nio-8080-exec-7] o.s.orm.jpa.JpaTransactionManager : Creating new transaction with name [org.springframework.security.oauth2.provider.token.DefaultTokenServices.refreshAccessToken]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; '', org.springframework.security.oauth2.common.exceptions.InvalidTokenException, org.springframework.security.oauth2.common.exceptions.InvalidGrantException
2016-10-24 23:01:41.166 DEBUG 48384 --- [nio-8080-exec-7] o.s.orm.jpa.JpaTransactionManager : Opened new EntityManager [org.hibernate.jpa.internal.EntityManagerImpl@54164e7a] for JPA transaction
2016-10-24 23:01:41.166 DEBUG 48384 --- [nio-8080-exec-7] o.h.e.t.internal.TransactionImpl : begin
2016-10-24 23:01:41.166 DEBUG 48384 --- [nio-8080-exec-7] o.s.orm.jpa.JpaTransactionManager : Exposing JPA transaction as JDBC transaction [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@5ad1aa88]
2016-10-24 23:01:41.167 DEBUG 48384 --- [nio-8080-exec-7] o.s.s.authentication.ProviderManager : Authentication attempt using org.springframework.security.web.authentication.preauth.PreAuthenticatedAuthenticationProvider
2016-10-24 23:01:41.167 DEBUG 48384 --- [nio-8080-exec-7] p.PreAuthenticatedAuthenticationProvider : PreAuthenticated authentication request: org.springframework.security.web.authentication.preauth.PreAuthenticatedAuthenticationToken@7a6d6be4: Principal: org.springframework.security.authentication.UsernamePasswordAuthenticationToken@95dbc1ee: Principal: org.springframework.security.core.userdetails.User@1c27dc33: Username: forkflit; Password: [PROTECTED]; Enabled: true; AccountNonExpired: true; credentialsNonExpired: true; AccountNonLocked: true; Granted Authorities: FORK_FLIT; Credentials: [PROTECTED]; Authenticated: true; Details: {grant_type=password, scope=trust, username=forkflit}; Granted Authorities: FORK_FLIT; Credentials: [PROTECTED]; Authenticated: true; Details: null; Granted Authorities: FORK_FLIT
2016-10-24 23:01:41.167 DEBUG 48384 --- [nio-8080-exec-7] o.s.orm.jpa.JpaTransactionManager : Initiating transaction rollback
2016-10-24 23:01:41.167 DEBUG 48384 --- [nio-8080-exec-7] o.s.orm.jpa.JpaTransactionManager : Rolling back JPA transaction on EntityManager [org.hibernate.jpa.internal.EntityManagerImpl@54164e7a]
2016-10-24 23:01:41.167 DEBUG 48384 --- [nio-8080-exec-7] o.h.e.t.internal.TransactionImpl : rolling back
2016-10-24 23:01:41.167 DEBUG 48384 --- [nio-8080-exec-7] o.s.orm.jpa.JpaTransactionManager : Closing JPA EntityManager [org.hibernate.jpa.internal.EntityManagerImpl@54164e7a] after transaction
2016-10-24 23:01:41.167 DEBUG 48384 --- [nio-8080-exec-7] o.s.orm.jpa.EntityManagerFactoryUtils : Closing JPA EntityManager
2016-10-24 23:01:41.167 DEBUG 48384 --- [nio-8080-exec-7] .m.m.a.ExceptionHandlerExceptionResolver : Resolving exception from handler [public org.springframework.http.ResponseEntity<org.springframework.security.oauth2.common.OAuth2AccessToken> org.springframework.security.oauth2.provider.endpoint.TokenEndpoint.postAccessToken(java.security.Principal,java.util.Map<java.lang.String, java.lang.String>) throws org.springframework.web.HttpRequestMethodNotSupportedException]: java.lang.IllegalStateException: UserDetailsService is required.
2016-10-24 23:01:41.167 DEBUG 48384 --- [nio-8080-exec-7] .m.m.a.ExceptionHandlerExceptionResolver : Invoking @ExceptionHandler method: public org.springframework.http.ResponseEntity<org.springframework.security.oauth2.common.exceptions.OAuth2Exception> org.springframework.security.oauth2.provider.endpoint.TokenEndpoint.handleException(java.lang.Exception) throws java.lang.Exception
2016-10-24 23:01:41.167 INFO 48384 --- [nio-8080-exec-7] o.s.s.o.provider.endpoint.TokenEndpoint : Handling error: IllegalStateException, UserDetailsService is required.
Когда я пытаюсь поместить токен обновления внутрь тела: {"refresh_token":"[refresh_token]"}
в ответ я получил:
{
"error": "server_error",
"error_description": null
}
и в журнале:
2016-10-24 23:05:19.449 DEBUG 48384 --- [nio-8080-exec-8] o.s.orm.jpa.JpaTransactionManager : Creating new transaction with name [org.springframework.security.oauth2.provider.token.DefaultTokenServices.refreshAccessToken]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; '', org.springframework.security.oauth2.common.exceptions.InvalidTokenException, org.springframework.security.oauth2.common.exceptions.InvalidGrantException
2016-10-24 23:05:19.449 DEBUG 48384 --- [nio-8080-exec-8] o.s.orm.jpa.JpaTransactionManager : Opened new EntityManager [org.hibernate.jpa.internal.EntityManagerImpl@386e5658] for JPA transaction
2016-10-24 23:05:19.449 DEBUG 48384 --- [nio-8080-exec-8] o.h.e.t.internal.TransactionImpl : begin
2016-10-24 23:05:19.449 DEBUG 48384 --- [nio-8080-exec-8] o.s.orm.jpa.JpaTransactionManager : Exposing JPA transaction as JDBC transaction [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@36a9af25]
2016-10-24 23:05:19.449 DEBUG 48384 --- [nio-8080-exec-8] o.s.orm.jpa.JpaTransactionManager : Initiating transaction rollback
2016-10-24 23:05:19.449 DEBUG 48384 --- [nio-8080-exec-8] o.s.orm.jpa.JpaTransactionManager : Rolling back JPA transaction on EntityManager [org.hibernate.jpa.internal.EntityManagerImpl@386e5658]
2016-10-24 23:05:19.449 DEBUG 48384 --- [nio-8080-exec-8] o.h.e.t.internal.TransactionImpl : rolling back
2016-10-24 23:05:19.450 DEBUG 48384 --- [nio-8080-exec-8] o.s.orm.jpa.JpaTransactionManager : Closing JPA EntityManager [org.hibernate.jpa.internal.EntityManagerImpl@386e5658] after transaction
2016-10-24 23:05:19.450 DEBUG 48384 --- [nio-8080-exec-8] o.s.orm.jpa.EntityManagerFactoryUtils : Closing JPA EntityManager
2016-10-24 23:05:19.450 DEBUG 48384 --- [nio-8080-exec-8] .m.m.a.ExceptionHandlerExceptionResolver : Resolving exception from handler [public org.springframework.http.ResponseEntity<org.springframework.security.oauth2.common.OAuth2AccessToken> org.springframework.security.oauth2.provider.endpoint.TokenEndpoint.postAccessToken(java.security.Principal,java.util.Map<java.lang.String, java.lang.String>) throws org.springframework.web.HttpRequestMethodNotSupportedException]: java.lang.NullPointerException
2016-10-24 23:05:19.450 DEBUG 48384 --- [nio-8080-exec-8] .m.m.a.ExceptionHandlerExceptionResolver : Invoking @ExceptionHandler method: public org.springframework.http.ResponseEntity<org.springframework.security.oauth2.common.exceptions.OAuth2Exception> org.springframework.security.oauth2.provider.endpoint.TokenEndpoint.handleException(java.lang.Exception) throws java.lang.Exception
2016-10-24 23:05:19.450 INFO 48384 --- [nio-8080-exec-8] o.s.s.o.provider.endpoint.TokenEndpoint : Handling error: NullPointerException, null
Интересно то, что spring что-то делает с JPA, в то время как в моей конфигурации я использую inMemory()
… Чего Spring хочет от DB?
Это мой класс конфигурации:
@Configuration
@EnableAuthorizationServer
@EnableResourceServer
@EnableGlobalMethodSecurity(prePostEnabled = true)
public class OAuth2Configuration extends AuthorizationServerConfigurerAdapter {
private UsersService service = new UsersService();
@Autowired
AuthenticationManagerBuilder authenticationManager;
@Override
public void configure( AuthorizationServerEndpointsConfigurer endpoints) {
endpoints.authenticationManager(new AuthenticationManager() {
@Override
public Authentication authenticate(Authentication authentication) throws AuthenticationException {
logger.info("Authentication!");
return authenticationManager.getOrBuild().authenticate(authentication);
}
});
}
@Override
public void configure(ClientDetailsServiceConfigurer clients) throws Exception {
clients.inMemory().withClient("myApp")
.authorizedGrantTypes("password", "refresh_token")
.scopes("write", "read", "trust")
.secret("123456").accessTokenValiditySeconds( 200 );
}
@Bean
public UserDetailsService userDetailsService() {
return (username) -> {
return service.getByName(username).map(account -> new User(account.getUsername(), account.getPassword(), account.getAuthorities())).orElseThrow(
() -> new RuntimeException("User not found")
);
};
}
}
В журналах я вижу, что компонент создан:
2016-10-24 22:53:49.648 DEBUG 48384 --- [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'userDetailsService'
2016-10-24 22:53:49.648 DEBUG 48384 --- [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'userDetailsService'
2016-10-24 22:53:49.648 DEBUG 48384 --- [ main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
2016-10-24 22:53:49.648 DEBUG 48384 --- [ main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'OAuth2Configuration'
2016-10-24 22:53:49.653 DEBUG 48384 --- [ main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'userDetailsService' to allow for resolving potential circular references
2016-10-24 22:53:49.654 DEBUG 48384 --- [ main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
2016-10-24 22:53:49.654 DEBUG 48384 --- [ main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
2016-10-24 22:53:49.655 DEBUG 48384 --- [ main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'userDetailsService'
Ответ №1:
Я не думаю, что это связано с каким-либо материалом JPA или InMemory.
Первая ошибка для UserDetailService, основанная на опубликованных вами журналах, просто означает, что у вас не внедрена надлежащая реализация UserDetailsService. UserDetailsService — это просто интерфейс. Я не знаю, что еще вы сделали для настройки, но ошибка определенно говорит о том, что Spring не может найти правильный введенный UserDetailsService. В конфигурации OAuth2 я вижу, что вы создали экземпляр UsersService, который, как я думаю, является вашей пользовательской реализацией для интерфейса UserDetailService?
Что касается второй ошибки, я вижу org.springframework.web.HttpRequestMethodNotSupportedException
в журнале, что означает, я полагаю, что вы отправили запрос с помощью GET, но сервер ожидает POST или наоборот. Проверьте, какой HTTP-метод вы используете, и какой код разделения ожидает получить.
Попробуйте изменить
endpoints.authenticationManager(new AuthenticationManager() {
@Override
public Authentication authenticate(Authentication authentication) throws AuthenticationException {
logger.info("Authentication!");
return authenticationManager.getOrBuild().authenticate(authentication);
}
});
Для
endpoints.authenticationManager(new AuthenticationManager() {
@Override
public Authentication authenticate(Authentication authentication) throws AuthenticationException {
logger.info("Authentication!");
return authenticationManager.getOrBuild().authenticate(authentication);
}
})
.allowedTokenEndpointRequestMethods(HttpMethod.GET, HttpMethod.POST);
в конце настройки конечных точек и посмотрите, имеет ли значение.
Комментарии:
1. У меня нет одной вещи… Если бы у меня не было UserDetailsService, я не смог бы получить access_token, используя учетные данные пользователя, а также используя refresh_token (использование учетных данных работает правильно)
2. Тогда это не должно быть из-за отсутствия UserDetailsService, просто отсутствует конфигурация, при которой серверная сторона не принимает метод HTTP, который запрашивает ваш клиент?