Generic JavaBeans Validation: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 6: Line 6:
=Overview=
=Overview=


This example depends on Spring Boot only because we use Spring Boot's machinery to pull starter dependencies, and get our runtime running.
This example depends on Spring Boot only because we use Spring Boot's machinery to pull starter dependencies, and get our runtime running:
 
<syntaxhighlight lang='groovy'>
dependencies {
    implementation('org.springframework.boot:spring-boot-starter-validation')
}
</syntaxhighlight>


=Playground Example=
=Playground Example=


{{External|[https://github.com/ovidiuf/playground/tree/master/spring/generic-validation GitHub Generic JavaBeans Validation Example]}}
{{External|[https://github.com/ovidiuf/playground/tree/master/spring/generic-validation GitHub Generic JavaBeans Validation Example]}}

Revision as of 01:13, 16 October 2018

Internal

Overview

This example depends on Spring Boot only because we use Spring Boot's machinery to pull starter dependencies, and get our runtime running:

dependencies {
    implementation('org.springframework.boot:spring-boot-starter-validation')
}

Playground Example

GitHub Generic JavaBeans Validation Example