package <%=@package%>.controller; <%=@licence%> import <%=@package%>.exception.NotCreatedException; import <%=@package%>.model.BaseEntity; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.rest.webmvc.ResourceNotFoundException; import org.springframework.hateoas.EntityLinks; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Component; import org.springframework.web.bind.annotation.ExceptionHandler; import org.springframework.web.bind.annotation.ResponseStatus; /** * A basecontroller for shared functionality. * * @author <%=@user_name%> */ @Component public abstract class BaseController { @Autowired EntityLinks entityLinks; /** * A conviniencemethod for creating new Entities. * * @param newEntity The entity that should be created * @param Type of the entity that should get created * @return The formal Response for the childcontroller. */ public ResponseEntity createEntity(T newEntity) { return ResponseEntity .created(entityLinks.linkForSingleResource(newEntity).toUri()).build(); } @ExceptionHandler(ResourceNotFoundException.class) @ResponseStatus(HttpStatus.NOT_FOUND) public String handleNotFound(ResourceNotFoundException ex) { return ex.toString(); } @ExceptionHandler(NotCreatedException.class) @ResponseStatus(HttpStatus.NOT_ACCEPTABLE) public String handleNotCreated(NotCreatedException ex) { return "couldn't create resource"; } }