Tôi đang cố xóa trang lỗi nhãn trắng, vì vậy những gì tôi đã làm được tạo ra ánh xạ bộ điều khiển cho "/ error",
@RestController
public class IndexController {
@RequestMapping(value = "/error")
public String error() {
return "Error handling";
}
}
Nhưng bây giờ tôi đang nhận được lỗi này.
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
Không biết liệu tôi có làm gì sai không. Vui lòng cho lời khuyên.
BIÊN TẬP:
Đã được thêm vào
error.whitelabel.enabled=false
tệp application.properIES, vẫn nhận được cùng một lỗi
spring.resources.add-mappings=false
chưa?
/error
đường dẫn được gọi?