Validation Constraints

By using the Jakarta Bean Validation Constraints developers with Spring-Data-Eclipse-Store can easily limit the allowed input of entities. Here is a full list of supported validations: https://jakarta.ee/learn

package software.xdev.spring.data.eclipse.store.demo.complex.model;

import jakarta.validation.constraints.NotBlank;

public class Person extends BaseEntity
{
    @NotBlank
    private String firstName;
    //...

The jakarta.validation.Validator is provided by the EclipseStoreClientConfiguration and can be changed in the project-specific configuration.