You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are migrating our spring boot application to java 17 . We are using jsonschema2pojo (v1.1.3) . We have a Date attribute with a pattern defined to validate (yyyy-mm-dd) values . The validation works fine in java 11 with javax.validation.constraints.Pattern, where the request is stopped with a Pattern check if the values does'not match .
But with java 17 and jakarta.validation.constraints.Pattern, the pattern check is not happening.