Forum Discussion
Humashankar
Champion Level 3
22 days agoHi igiguere
In OpenAPI documents generated from annotated code in Spring Boot, defining minimum and maximum string length is possible, but the behavior depends on the OpenAPI library used.
- When using SpringDoc OpenAPI, the @Size(min, max) annotation is usually recognized and automatically adds minLength and maxLength to the OpenAPI specification.
- For instance, annotating a username field with @Size(min = 5, max = 15) should result in the generated OpenAPI YAML or JSON including minLength: 5 and maxLength: 15.
- Though, if @Size is not reflected in the OpenAPI output, manual enforcement is possible using a SpringDoc OpenAPI customizer.
- This involves implementing a customizer to explicitly set minLength and maxLength for the desired schema.
Especially, this can be achieved through annotations or customization, eliminating the need for Spring Boot application.properties settings.
Hope this helps - Happy to help further!!
Thank you very much and have a great one!
Warm regards