42. Bean Validation Coding Step by Step - Part III - Implement Validation

Pubblicato il: 05 ottobre 2019
sul canale di: Miss Xing (邢老师)
2,076
74

Shows you how to implement bean validation with hibernate-validator version 6.
It has one mistake in the video about @DateTimeFormat. In the video, I said, @DateTimeFormatter cannot be used for LocalDate. I was wrong, it doesn't work in that case, is because the pattern string ("mm-DD-yyyy") I put is against the standard, it should be "MM-dd-yyyy"

What's in the video is
@DateTimeFormat(pattern = "mm-DD-yyyy")
private LocalDate birthday;

If you change to configuration below, it should work. Sorry for that.
@DateTimeFormat(pattern = "MM-dd-yyyy")
private LocalDate birthday;

Source code link: https://github.com/TinaXing2012/Spring
Project Name: SpringValidationXML


In questa pagina del sito puoi guardare il video online 42. Bean Validation Coding Step by Step - Part III - Implement Validation della durata di ore minuti seconda in buona qualità , che l'utente ha caricato Miss Xing (邢老师) 05 ottobre 2019, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 2,076 volte e gli è piaciuto 74 spettatori. Buona visione!