-
Notifications
You must be signed in to change notification settings - Fork 749
New issue
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
Add support for @Email with BeanValidationStrategy #311
Comments
Hi, Email was added in Java EE 8, while, we still support only Java EE 7. This would require updating dependencies and drop of Java 6 and Java 7 support. Thanks, Daniil |
Thanks for the clarification. What about adding the email validator to the package without tying it to the I think that it's also possible to compile it properly with |
Hi, source and target are not working properly in Oracle Java compiler. Target just sets version to the bytecode without any validation. Then during execution one will get UnsupportedClassVersionError exception. This makes it extremely dangerous feature marginally being useless. You could do PR and we can think how to merge it smartly. Thanks, Daniil |
Fixed in Podam 8.0.0 or later |
Very nice! Thank you! |
Similar to #218 I think that a strategy for EMail strings should be implemented. The docs state that
javax.validation.constraints
are supported, but it does not yet work for@Email
.I could make a PR similar to what the email example in the docs suggest. Some Latin chars, the at-symbol, some Latin chars, dot, 2-3 Latin chars.
The text was updated successfully, but these errors were encountered: