當前位置: 首頁>>代碼示例>>Java>>正文


Java DefaultTokenServices類代碼示例

本文整理匯總了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;
}
 
開發者ID:eclipse,項目名稱:hawkbit-extensions,代碼行數:11,代碼來源:UaaOAuthAutoConfiguration.java

示例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);

}
 
開發者ID:hulvyou,項目名稱:spring-cloud-template,代碼行數:17,代碼來源:OAuth2ServerConfig.java

示例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);
}
 
開發者ID:petrbouda,項目名稱:joyrest,代碼行數:17,代碼來源:OAuth2Initializer.java

示例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);
}
 
開發者ID:jungyang,項目名稱:oauth-client-master,代碼行數:17,代碼來源:ProviderBeanDefinitionParser.java

示例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);
}
 
開發者ID:codenergic,項目名稱:theskeleton,代碼行數:8,代碼來源:OAuth2ResourceServerConfig.java

示例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;
}
 
開發者ID:tinmegali,項目名稱:Using-Spring-Oauth2-to-secure-REST,代碼行數:10,代碼來源:AuthorizationConfig.java

示例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);
}
 
開發者ID:MinsxCloud,項目名稱:minsx-authorization-server,代碼行數:11,代碼來源:AuthorizationServerConfig.java


注:本文中的org.springframework.security.oauth2.provider.token.DefaultTokenServices類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。