Hi,
I am working on vscode-quarkus and Quarkus Tools for IntelliJ, and some user reported issues because they cannot retrieve some smallrye JWT properties in application.properties (completion, validation, navigation etc)
All properties that you have defined with @ConfigProperty are retrieved like smallrye.jwt.always-check-authorization
|
@ConfigProperty(name = "smallrye.jwt.always-check-authorization", defaultValue = "false") |
But some properties like smallrye.jwt.sign.key.location ar enot retrieved because it seems you have hard coded that without using ConfigProperty.
Is it a reason to do that? If yes I will hard code thos properties in our tooling.
Thanks for your answer.
Hi,
I am working on vscode-quarkus and Quarkus Tools for IntelliJ, and some user reported issues because they cannot retrieve some smallrye JWT properties in application.properties (completion, validation, navigation etc)
All properties that you have defined with
@ConfigPropertyare retrieved likesmallrye.jwt.always-check-authorizationsmallrye-jwt/implementation/jwt-auth/src/main/java/io/smallrye/jwt/config/JWTAuthContextInfoProvider.java
Line 352 in 927824c
But some properties like
smallrye.jwt.sign.key.locationar enot retrieved because it seems you have hard coded that without using ConfigProperty.Is it a reason to do that? If yes I will hard code thos properties in our tooling.
Thanks for your answer.