Search
 
SCRIPT & CODE EXAMPLE
 

JAVA

Authentication Server with spring, JWT & JPA


import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.authentication.AuthenticationManager;
import org.springframework.security.core.userdetails.UserDetailsService;
import org.springframework.security.crypto.password.PasswordEncoder;
import org.springframework.security.oauth2.config.annotation.configurers.ClientDetailsServiceConfigurer;
import org.springframework.security.oauth2.config.annotation.web.configuration.AuthorizationServerConfigurerAdapter;
import org.springframework.security.oauth2.config.annotation.web.configuration.EnableAuthorizationServer;
import org.springframework.security.oauth2.config.annotation.web.configurers.AuthorizationServerEndpointsConfigurer;
import org.springframework.security.oauth2.config.annotation.web.configurers.AuthorizationServerSecurityConfigurer;
import org.springframework.security.oauth2.provider.token.TokenStore;
import org.springframework.security.oauth2.provider.token.store.JdbcTokenStore;
import org.springframework.security.oauth2.provider.token.store.JwtAccessTokenConverter;

import javax.sql.DataSource;

@Configuration
@EnableAuthorizationServer
public class AuthorizationServerConfig
        extends AuthorizationServerConfigurerAdapter {

    @Value("${jwt.key}")
    private String jwtKey;
    @Autowired
    private PasswordEncoder passwordEncoder;
    @Autowired
    private DataSource dataSource;
    @Autowired
    private AuthenticationManager authenticationManager;
    @Autowired
    private TokenStore tokenStore;
    @Autowired
    private JwtAccessTokenConverter jwtAccessTokenConverter;
    @Autowired
    private UserDetailsService userDetailsService;
    @Override
    public void configure(ClientDetailsServiceConfigurer clients) throws Exception {
        clients.jdbc(dataSource).passwordEncoder(passwordEncoder);
    }

    @Override
    public void configure(AuthorizationServerEndpointsConfigurer endpoints) {
        endpoints
                .authenticationManager(authenticationManager)
                .tokenStore(tokenStore)
                .accessTokenConverter(jwtAccessTokenConverter)
                .userDetailsService(userDetailsService);
    }

    @Bean
    public TokenStore tokenStore() {
        return new JdbcTokenStore(dataSource);
    }

    @Bean
    public JwtAccessTokenConverter jwtAccessTokenConverter() {
        var converter = new JwtAccessTokenConverter();
        converter.setSigningKey(jwtKey);
        return converter;
    }

    @Override
    public void configure(AuthorizationServerSecurityConfigurer security) {
        security.checkTokenAccess("isAuthenticated()");
    }
}
Comment

PREVIOUS NEXT
Code Example
Java :: javafx textarea new line with shift+enter 
Java :: set precision in java 
Java :: Rxjava dependencies 
Java :: java 11 initialize map 
Java :: java random Double between 
Java :: java retirer derniere caractere sting 
Java :: add value with n variable with Arraylist in java 
Java :: java ee check if session exists or is new 
Java :: how to find power of a number in java 
Java :: Lunar New Year 
Java :: android studio get string 
Java :: status codes springboot 
Java :: creating modulu function withou using % java 
Java :: java create list of strings 
Java :: how to add to arras java 
Java :: java word count 
Java :: java discord bot get id of message it just sent 
Java :: how to not open key board on start 
Java :: why to use serializable with java bean 
Java :: java if one sting on array match 
Java :: procedural programming Java code example 
Java :: setint java 
Java :: java 2d array loop 
Java :: java display two dimensional array 
Java :: how to import cert from browser into java 
Java :: sum numbers in array java 
Java :: java array to arraylist 
Java :: android push notification icon 
Java :: java add com.google.guava dependancy maven 
Java :: java uuid 
ADD CONTENT
Topic
Content
Source link
Name
5+1 =