Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents
minLevel1
maxLevel2
outlinefalse
styledisc
typelist
printablefalse

Database schema and custom Micronaut validators

We have dedicated migrations for defining the database schema.

...

  • This ensures the validation routines are called on the model.

  • You should also get a validation exception should it fail.

Validating that a property is not null

@NonNull is a compiler and tooling suggestion whereas @NotNull  is a validation directive for validated classes.

...