मैं व्हाइट लेबल त्रुटि पृष्ठ को हटाने का प्रयास कर रहा हूं, इसलिए मैंने जो किया है वह "/ त्रुटि" के लिए नियंत्रक मानचित्रण बनाया गया था,
@RestController
public class IndexController {
@RequestMapping(value = "/error")
public String error() {
return "Error handling";
}
}
लेकिन अब मुझे यह त्रुटि हो रही है।
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
पता नहीं मैं कुछ गलत कर रहा हूँ या नहीं। कृपया सलाह दें।
संपादित करें:
पहले से ही error.whitelabel.enabled=false
application.properties फ़ाइल में जोड़ा
गया, अभी भी वही त्रुटि हो रही है
spring.resources.add-mappings=false
?
/error
पथ कहे जाने पर कुछ कस्टम सामग्री वापस करने का प्रयास कर रहे हैं ?