我正在使用Spring WebFlux构建REST API,并希望实施严格的HTTP方法支持。
我有一个定义路线的Bean /配置,例如
// Convert the response body to a JSON object
var jsonData = pm.response.json()
// Create a variable and assign the value of IsArchived to it
var isArchived = jsonData.IsArchived;
// OR create a Postman environment variable and assign the value of IsArchived to it
pm.environment.set("isArchived", jsonData.IsArchived);
如果我现在发送除HTTP GET(POST,PUT,DELETE)以外的任何请求,我希望得到405响应,但我得到的是404,这在语义上是不正确的。
如何为受支持的方法强制执行更严格的规则?