Spring Validation Concepts: Difference between revisions
Jump to navigation
Jump to search
Line 6: | Line 6: | ||
=Overview= | =Overview= | ||
Spring supports [[Bean Validation]] API (JSR-303) which allows to declare validation rules as annotations, as opposed to explicitly writing validation logic in the application code. | Spring supports [[Bean Validation]] API (JSR-303) which allows to declare validation rules as annotations, as opposed to explicitly writing validation logic in the application code. The Bean Validation API and the Hibernate implementation of the Validation API are automatically added to the project as transient dependencies of the Spring Boot web starter. | ||
=TODO= | =TODO= |
Revision as of 04:40, 12 October 2018
Internal
Overview
Spring supports Bean Validation API (JSR-303) which allows to declare validation rules as annotations, as opposed to explicitly writing validation logic in the application code. The Bean Validation API and the Hibernate implementation of the Validation API are automatically added to the project as transient dependencies of the Spring Boot web starter.
TODO
TODO:
- https://docs.spring.io/spring/docs/5.1.0.RELEASE/spring-framework-reference/core.html#validation
- https://docs.spring.io/spring/docs/5.1.0.RELEASE/spring-framework-reference/core.html#validation-beanvalidation
- JSR-303 validation, https://spring.io/guides/gs/validating-form-input/