我有支持 cors 的 Spring Boot Actuator,它在 application.properties 中配置,如下所示:
management.context-path=/management
endpoints.cors.allowed-origins=*
endpoints.cors.allowed-methods=GET,OPTIONS
endpoints.cors.allowed-headers=*
当我尝试使用任何标头向此路径发送请求时,我总是会收到此错误
org.springframework.web.servlet.PageNotFound - Request method 'OPTIONS' not supported
GET 请求工作正常。我做错了什么?