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");
}
我使用这段代码,但我想从我的数据库中读取accessTokenValiditySeconds,请帮我解决Spring Web服务认证方面的新问题。提前谢谢。
答案 0 :(得分:0)
您可以@Autowired a service / dao并发出从数据库读取值的请求。你的问题是什么?