Merge pull request #30 from dBucik/fix_jwk_endpoint

fix: 🐛 fix loading JWKS
pull/1580/head
Dominik František Bučík 2021-11-05 11:38:11 +01:00 committed by GitHub
commit ff374838b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd">
<bean id="defaultKeyStore" class="cz.muni.ics.jose.keystore.JWKSetKeyStore">
<property name="location" value="classpath:keystore.jwks" />
<property name="location" value="${jwk}" />
</bean>
<bean id="defaultsignerService" class="cz.muni.ics.jwt.signer.service.impl.DefaultJWTSigningAndValidationService">