gpt4 book ai didi

java - PUT 无法解析为变量

转载 作者:行者123 更新时间:2023-12-01 10:08:02 25 4
gpt4 key购买 nike

考虑以下 Rest Controller :

@RequestMapping(method = PUT, path = "/orders/{oid}")
public void PendingPO(Model model, @RequestParam(name = "id") Long id) throws Exception {
salesService.PendingPurchaseOrder(PurchaseOrderID.of(id));
}

问题是,在 method = PUT 中它提示:

PUT cannot be resolved to a variable

所以我不知道如何为 PUT 的 http 方法创建一个 Controller 方法?

最佳答案

您需要为 PUT 引入静态导入:

import static org.springframework.web.bind.annotation.RequestMethod.PUT. 

或者通常导入 RequestedMethod 枚举并使用对 PUT 的引用:RequestMethod.PUT。

关于java - PUT 无法解析为变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36319275/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com