当前位置: 首页>>代码示例>>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;未经允许,请勿转载。