Simple Controller
Simple variant of CRUDController where create/update models are just models and create/update DTOs are just DTOs
This is meant to be extended from a @RestController class, ideally also with a @RequestMapping with some path prefix for the endpoints.
Parameters
Id type of the data
Entity type of the data which is a SimpleEntity
Model type of the data which is a SimpleModel
DTO type of the data which is a SimpleDTO
Mapper type of the data which is a SimpleMapper
Repository type of the data which is a SimpleRepository
Service type of the data which is a SimpleService
Inherited functions
Default implementation for creating a new entity from given create DTO
Default implementation for listing entities with given pagination
Default implementation for updating an entity with given id with given update DTO data