#5548 Avoid html escaping of pattern in bean validation (#5549)

* Issue #5548 Avoid html escaping of pattern in bean validation

* Run spring-all-petstore.sh and java-petstore-all.sh scripts
This commit is contained in:
Andrea Polci
2017-05-04 11:12:13 +02:00
committed by wing328
parent a7e42ee2b6
commit fd17955685
115 changed files with 892 additions and 409 deletions

View File

@@ -1,4 +1,4 @@
{{#pattern}} @Pattern(regexp="{{pattern}}"){{/pattern}}{{!
{{#pattern}} @Pattern(regexp="{{{pattern}}}"){{/pattern}}{{!
minLength && maxLength set
}}{{#minLength}}{{#maxLength}} @Size(min={{minLength}},max={{maxLength}}){{/maxLength}}{{/minLength}}{{!
minLength set, maxLength not