Estoy tratando de eliminar la página de error de etiqueta blanca, así que lo que hice fue crear una asignación de controlador para "/ error",
@RestController
public class IndexController {
@RequestMapping(value = "/error")
public String error() {
return "Error handling";
}
}
Pero ahora recibo este error.
Exception in thread "AWT-EventQueue-0" org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'requestMappingHandlerMapping' defined in class path resource [org/springframework/web/servlet/config/annotation/DelegatingWebMvcConfiguration.class]: Invocation of init method failed; nested exception is java.lang.IllegalStateException: Ambiguous mapping found. Cannot map 'basicErrorController' bean method
public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletR equest)
to {[/error],methods=[],params=[],headers=[],consumes=[],produces=[],custom=[]}: There is already 'indexController' bean method
No sé si estoy haciendo algo mal. Por favor aconséjame.
EDITAR:
Ya se ha agregado
error.whitelabel.enabled=false
al archivo application.properties, pero sigue obteniendo el mismo error
spring.resources.add-mappings=false
?
/error
se llama a la ruta?