简体   繁体   中英

Oauth2 authentication

public void configure(ClientDetailsServiceConfigurer clients) throws Exception {

            clients.inMemory()
           .withClient("javadeveloperzone")
                   .secret("secretcode")
                   .accessTokenValiditySeconds(2000)        // expire time for access token
                   .refreshTokenValiditySeconds(-1)         // expire time for refresh token
           .scopes("read", "write")                         // scope related to resource server
                   .authorizedGrantTypes("password", "refresh_token");      




}

I use this code but I want to accessTokenValiditySeconds read from my data base please help me for that i new in Spring web service authentication. Thanks in advance.

You can @Autowired a service/dao and make a request to read value from database. What's your problem ?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM