本文整理匯總了Java中org.springframework.security.oauth2.provider.token.DefaultTokenServices類的典型用法代碼示例。如果您正苦於以下問題:Java DefaultTokenServices類的具體用法?Java DefaultTokenServices怎麽用?Java DefaultTokenServices使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
DefaultTokenServices類屬於org.springframework.security.oauth2.provider.token包,在下文中一共展示了DefaultTokenServices類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: resourceOAuthFilter
import org.springframework.security.oauth2.provider.token.DefaultTokenServices; //導入依賴的package包/類
private Filter resourceOAuthFilter() {
final DefaultTokenServices remoteTokenService = new DefaultTokenServices();
remoteTokenService.setTokenStore(jwtTokenStore());
final OAuth2AuthenticationManager oauth2Manager = new OAuth2AuthenticationManager();
oauth2Manager.setTokenServices(remoteTokenService);
final OAuth2AuthenticationProcessingFilter oAuth2AuthenticationProcessingFilter = new OAuth2AuthenticationProcessingFilter();
oAuth2AuthenticationProcessingFilter.setTokenExtractor(new BearerTokenExtractor());
oAuth2AuthenticationProcessingFilter.setAuthenticationManager(oauth2Manager);
return oAuth2AuthenticationProcessingFilter;
}
示例2: configure
import org.springframework.security.oauth2.provider.token.DefaultTokenServices; //導入依賴的package包/類
@Override
public void configure(AuthorizationServerEndpointsConfigurer endpoints) throws Exception {
endpoints.authenticationManager(authenticationManager)
.tokenStore(tokenStore());
//endpoints.tokenStore(new RedisTokenStore(redisConnectionFactory));
//配置TokenServices參數
DefaultTokenServices tokenServices = new DefaultTokenServices();
tokenServices.setTokenStore(endpoints.getTokenStore());
tokenServices.setSupportRefreshToken(false);
tokenServices.setClientDetailsService(endpoints.getClientDetailsService());
tokenServices.setTokenEnhancer(endpoints.getTokenEnhancer());
tokenServices.setAccessTokenValiditySeconds(180000);
endpoints.tokenServices(tokenServices);
}
示例3: txProxiedTokenServices
import org.springframework.security.oauth2.provider.token.DefaultTokenServices; //導入依賴的package包/類
private DefaultTokenServices txProxiedTokenServices(DefaultTokenServices tokenServices, DataSource dataSource) {
AnnotationTransactionAttributeSource attrSource = new AnnotationTransactionAttributeSource();
DataSourceTransactionManager txManager = new DataSourceTransactionManager(dataSource);
TransactionInterceptor txInterceptor = transactionInterceptor(attrSource, txManager);
BeanFactoryTransactionAttributeSourceAdvisor txAdvisor = transactionAdvisor(attrSource, txInterceptor);
ClassLoader classLoader = ClassUtils.getDefaultClassLoader();
ProxyFactory proxyFactory = new ProxyFactory(tokenServices);
proxyFactory.addAdvice(txInterceptor);
proxyFactory.addAdvisor(txAdvisor);
proxyFactory.setInterfaces(
ClassUtils.getAllInterfacesForClass(
new SingletonTargetSource(tokenServices).getTargetClass(), classLoader));
return (DefaultTokenServices) proxyFactory.getProxy(classLoader);
}
示例4: parseInternal
import org.springframework.security.oauth2.provider.token.DefaultTokenServices; //導入依賴的package包/類
@Override
protected AbstractBeanDefinition parseInternal(Element element, ParserContext parserContext) {
String tokenServicesRef = element.getAttribute("token-services-ref");
String serializerRef = element.getAttribute("serialization-service-ref");
if (!StringUtils.hasText(tokenServicesRef)) {
tokenServicesRef = "oauth2TokenServices";
BeanDefinitionBuilder tokenServices = BeanDefinitionBuilder.rootBeanDefinition(DefaultTokenServices.class);
AbstractBeanDefinition tokenStore = BeanDefinitionBuilder.rootBeanDefinition(InMemoryTokenStore.class).getBeanDefinition();
tokenServices.addPropertyValue("tokenStore", tokenStore);
parserContext.getRegistry().registerBeanDefinition(tokenServicesRef, tokenServices.getBeanDefinition());
}
return parseEndpointAndReturnFilter(element, parserContext, tokenServicesRef, serializerRef);
}
示例5: jwkTokenServices
import org.springframework.security.oauth2.provider.token.DefaultTokenServices; //導入依賴的package包/類
@Bean
@ConditionalOnMissingBean(ResourceServerTokenServices.class)
public DefaultTokenServices jwkTokenServices(TokenStore jwkTokenStore) {
DefaultTokenServices services = new DefaultTokenServices();
services.setTokenStore(jwkTokenStore);
return services;
}
開發者ID:spring-projects,項目名稱:spring-security-oauth2-boot,代碼行數:8,代碼來源:ResourceServerTokenServicesConfiguration.java
示例6: jwtTokenServices
import org.springframework.security.oauth2.provider.token.DefaultTokenServices; //導入依賴的package包/類
@Bean
@ConditionalOnMissingBean(ResourceServerTokenServices.class)
public DefaultTokenServices jwtTokenServices(TokenStore jwtTokenStore) {
DefaultTokenServices services = new DefaultTokenServices();
services.setTokenStore(jwtTokenStore);
return services;
}
開發者ID:spring-projects,項目名稱:spring-security-oauth2-boot,代碼行數:8,代碼來源:ResourceServerTokenServicesConfiguration.java
示例7: switchToJwt
import org.springframework.security.oauth2.provider.token.DefaultTokenServices; //導入依賴的package包/類
@Test
public void switchToJwt() {
TestPropertyValues.of("security.oauth2.resource.jwt.keyValue=FOOBAR")
.applyTo(this.environment);
this.context = new SpringApplicationBuilder(ResourceConfiguration.class)
.environment(this.environment).web(WebApplicationType.NONE).run();
DefaultTokenServices services = this.context.getBean(DefaultTokenServices.class);
assertThat(services).isNotNull();
this.thrown.expect(NoSuchBeanDefinitionException.class);
this.context.getBean(RemoteTokenServices.class);
}
開發者ID:spring-projects,項目名稱:spring-security-oauth2-boot,代碼行數:12,代碼來源:ResourceServerTokenServicesConfigurationTests.java
示例8: asymmetricJwt
import org.springframework.security.oauth2.provider.token.DefaultTokenServices; //導入依賴的package包/類
@Test
public void asymmetricJwt() {
TestPropertyValues.of("security.oauth2.resource.jwt.keyValue=" + PUBLIC_KEY)
.applyTo(this.environment);
this.context = new SpringApplicationBuilder(ResourceConfiguration.class)
.environment(this.environment).web(WebApplicationType.NONE).run();
DefaultTokenServices services = this.context.getBean(DefaultTokenServices.class);
assertThat(services).isNotNull();
}
開發者ID:spring-projects,項目名稱:spring-security-oauth2-boot,代碼行數:10,代碼來源:ResourceServerTokenServicesConfigurationTests.java
示例9: jwkConfiguration
import org.springframework.security.oauth2.provider.token.DefaultTokenServices; //導入依賴的package包/類
@Test
public void jwkConfiguration() throws Exception {
TestPropertyValues
.of("security.oauth2.resource.jwk.key-set-uri=http://my-auth-server/token_keys")
.applyTo(this.environment);
this.context = new SpringApplicationBuilder(ResourceConfiguration.class)
.environment(this.environment).web(WebApplicationType.NONE).run();
DefaultTokenServices services = this.context.getBean(DefaultTokenServices.class);
assertThat(services).isNotNull();
this.thrown.expect(NoSuchBeanDefinitionException.class);
this.context.getBean(RemoteTokenServices.class);
}
開發者ID:spring-projects,項目名稱:spring-security-oauth2-boot,代碼行數:13,代碼來源:ResourceServerTokenServicesConfigurationTests.java
示例10: testDisablingAuthorizationServer
import org.springframework.security.oauth2.provider.token.DefaultTokenServices; //導入依賴的package包/類
@Test
public void testDisablingAuthorizationServer() {
this.context = new AnnotationConfigServletWebServerApplicationContext();
this.context.register(ResourceServerConfiguration.class,
MinimalSecureWebApplication.class);
TestPropertyValues.of("security.oauth2.resource.jwt.keyValue:DEADBEEF")
.applyTo(this.context);
ConfigurationPropertySources.attach(this.context.getEnvironment());
this.context.refresh();
assertThat(countBeans(RESOURCE_SERVER_CONFIG)).isEqualTo(1);
assertThat(countBeans(AUTHORIZATION_SERVER_CONFIG)).isEqualTo(0);
assertThat(countBeans(UserApprovalHandler.class)).isEqualTo(0);
assertThat(countBeans(DefaultTokenServices.class)).isEqualTo(1);
}
開發者ID:spring-projects,項目名稱:spring-security-oauth2-boot,代碼行數:15,代碼來源:OAuth2AutoConfigurationTests.java
示例11: configure
import org.springframework.security.oauth2.provider.token.DefaultTokenServices; //導入依賴的package包/類
@Override
public void configure(ResourceServerSecurityConfigurer resources) throws Exception {
DefaultTokenServices tokenServices = new DefaultTokenServices();
tokenServices.setAuthenticationManager(authenticationManager);
tokenServices.setTokenStore(tokenStore);
resources.tokenServices(tokenServices);
}
示例12: tokenServices
import org.springframework.security.oauth2.provider.token.DefaultTokenServices; //導入依賴的package包/類
@Bean
@Primary
public DefaultTokenServices tokenServices() {
MyTokenService tokenService = new MyTokenService(blackListService);
tokenService.setTokenStore(tokenStore());
tokenService.setSupportRefreshToken(true);
tokenService.setTokenEnhancer(accessTokenConverter());
return tokenService;
}
示例13: tokenServices
import org.springframework.security.oauth2.provider.token.DefaultTokenServices; //導入依賴的package包/類
@Bean
@Primary
public DefaultTokenServices tokenServices() {
DefaultTokenServices defaultTokenServices = new DefaultTokenServices();
defaultTokenServices.setTokenStore(tokenStore());
defaultTokenServices.setSupportRefreshToken(true);
defaultTokenServices.setTokenEnhancer(accessTokenConverter());
return defaultTokenServices;
}
開發者ID:tinmegali,項目名稱:Oauth2-Stateless-Authentication-with-Spring-and-JWT-Token,代碼行數:10,代碼來源:AuthorizationServerConfig.java
示例14: tokenServices
import org.springframework.security.oauth2.provider.token.DefaultTokenServices; //導入依賴的package包/類
@Bean
@Primary
public DefaultTokenServices tokenServices() {
final DefaultTokenServices defaultTokenServices = new DefaultTokenServices();
defaultTokenServices.setTokenStore(tokenStore());
defaultTokenServices.setSupportRefreshToken(true);
return defaultTokenServices;
}
開發者ID:PacktPublishing,項目名稱:Building-Web-Apps-with-Spring-5-and-Angular,代碼行數:9,代碼來源:AuthServerOAuth2Config.java
示例15: configure
import org.springframework.security.oauth2.provider.token.DefaultTokenServices; //導入依賴的package包/類
@Override
public void configure(AuthorizationServerEndpointsConfigurer endpoints) throws Exception {
DefaultTokenServices tokenServices = new DefaultTokenServices();
tokenServices.setTokenStore(endpoints.getTokenStore());
tokenServices.setSupportRefreshToken(true);
tokenServices.setClientDetailsService(endpoints.getClientDetailsService());
tokenServices.setTokenEnhancer(endpoints.getTokenEnhancer());
tokenServices.setAccessTokenValiditySeconds((int) TimeUnit.MINUTES.toSeconds(30));
endpoints.tokenServices(tokenServices);
}