cached jwk services expire after an hour
parent
7e51a361ba
commit
21068f57e6
|
@ -20,6 +20,7 @@
|
||||||
package org.mitre.jwt.signer.service.impl;
|
package org.mitre.jwt.signer.service.impl;
|
||||||
|
|
||||||
import java.util.concurrent.ExecutionException;
|
import java.util.concurrent.ExecutionException;
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
import org.apache.http.client.HttpClient;
|
import org.apache.http.client.HttpClient;
|
||||||
import org.apache.http.impl.client.DefaultHttpClient;
|
import org.apache.http.impl.client.DefaultHttpClient;
|
||||||
|
@ -54,6 +55,7 @@ public class JWKSetSigningAndValidationServiceCacheService {
|
||||||
|
|
||||||
public JWKSetSigningAndValidationServiceCacheService() {
|
public JWKSetSigningAndValidationServiceCacheService() {
|
||||||
this.cache = CacheBuilder.newBuilder()
|
this.cache = CacheBuilder.newBuilder()
|
||||||
|
.expireAfterWrite(1, TimeUnit.HOURS) // expires 1 hour after fetch
|
||||||
.maximumSize(100)
|
.maximumSize(100)
|
||||||
.build(new JWKSetVerifierFetcher());
|
.build(new JWKSetVerifierFetcher());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue