We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 737ecca commit 9aa78d0Copy full SHA for 9aa78d0
springdoc-openapi-starter-common/src/main/java/org/springdoc/core/fn/RouterFunctionData.java
@@ -285,6 +285,7 @@ private RequestMethod getRequestMethod(HttpMethod httpMethod) {
285
case "PATCH" -> requestMethod = RequestMethod.PATCH;
286
case "HEAD" -> requestMethod = RequestMethod.HEAD;
287
case "OPTIONS" -> requestMethod = RequestMethod.OPTIONS;
288
+ case "TRACE" -> requestMethod = RequestMethod.TRACE;
289
default ->
290
throw new IllegalStateException("Unexpected value: " + httpMethod.name());
291
}
0 commit comments