Estou tentando remover a página de erro de etiqueta branca, então o que fiz foi criar um mapeamento de controlador para "/ error",
@RestController
public class IndexController {
@RequestMapping(value = "/error")
public String error() {
return "Error handling";
}
}
Mas agora estou recebendo esse erro.
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
Não sei se estou fazendo algo errado. Conselho por favor.
EDITAR:
Já foi adicionado
error.whitelabel.enabled=false
ao arquivo application.properties, ainda obtendo o mesmo erro
spring.resources.add-mappings=false
?
/error
caminho é chamado?