package <%=@package%>.controller; /* * Copyright (c) 2015 <%=@user_name%>. * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ 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"; } }