次のように application.properties で構成された、cors サポートを備えた Spring Boot Actuator があります。
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 リクエストは正常に機能します。私が間違っていることは何ですか?