get

@GetMapping(path = ["/{id}"], produces = ["application/json"])
open fun get(@PathVariable(value = "id") id: I, @PathVariable pathVariables: Map<String, String>, request: HttpServletRequest): D(source)

Default implementation for getting an entity with given id

Return

DTO of the entity with given id

Parameters

id

Id of the entity

pathVariables

Path variables of the request

request

HTTP request