We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pull request #17 point a bug in QueryParameterAnnotationHandler which doesn't format strings correctly.
QueryParameterAnnotationHandler
@QueryParameter("limit=%d") private Integer limit;
should be sucessfully transformed to limit=12345 instead of throwing IllegalFormatConversionException.
limit=12345
IllegalFormatConversionException
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Pull request #17 point a bug in
QueryParameterAnnotationHandler
which doesn't format strings correctly.should be sucessfully transformed to
limit=12345
instead of throwingIllegalFormatConversionException
.The text was updated successfully, but these errors were encountered: