ฉันกำลังพยายามลบหน้าข้อผิดพลาดของ white label ดังนั้นสิ่งที่ฉันทำไปแล้วคือสร้างการแมปคอนโทรลเลอร์สำหรับ "/ error"
@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
มีการเรียกพา ธ