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
See this: micronaut-projects/micronaut-validation#281
Sample class:
@Introspected class OptionalGetters { @Nullable @Pattern(regexp = "[a-z]+") String alpha Optional<String> getAlpha() { Optional.ofNullable(alpha) } void setAlpha(String alpha) { this.alpha = alpha } }
When we get beanProperty "alpha" we see this:
As you see, annotation metadata is empty for this proeprty. Because of it now validation doesn't work for this case
No response
4.3.7
The text was updated successfully, but these errors were encountered:
@dstepanov look to this, pls
Sorry, something went wrong.
Probably the same issue like micronaut-projects/micronaut-serialization#691 caused by a different getter/setter type
No branches or pull requests
Expected Behavior
See this: micronaut-projects/micronaut-validation#281
Sample class:
When we get beanProperty "alpha" we see this:
As you see, annotation metadata is empty for this proeprty. Because of it now validation doesn't work for this case
Actual Behaviour
No response
Steps To Reproduce
No response
Environment Information
No response
Example Application
No response
Version
4.3.7
The text was updated successfully, but these errors were encountered: