gpt4 book ai didi

spring - 使用@RequestParam 时出错但用作参数 Java/Spring 时不出错

转载 作者:行者123 更新时间:2023-12-04 17:34:57 24 4
gpt4 key购买 nike

这是有效的

@PostMapping(value="/foo", params={"add"})
public String add(@ModelAttribute Foo foo) {
return "foo";
}

@PostMapping(value="/foo", params={"delete"})
public String delete(@ModelAttribute Foo foo) {
return "foo";
}

为什么这个不起作用?

@PostMapping("/foo")
public String add(@ModelAttribute Foo foo, @RequestParam String add) {
return "foo";
}

@PostMapping("/foo")
public String delete(@ModelAttribute Foo foo, @RequestParam String delete) {
return "foo";
}

使用@PostMapping,我收到以下错误消息。

Invocation of init method failed; nested exception is java.lang.IllegalStateException: Ambiguous mapping. Cannot map 'webController' method

为什么我在使用 @RequestParam 时收到 ErrorMessage?

最佳答案

@RequestParam 在您使用它的两个不同级别上解析。

根据 spring 文档,参数是

Supported at the type level as well as at the method level! When used at the type level, all method-level mappings inherit this parameter restriction (i.e. the type-level restriction gets checked before the handler method is even resolved).

在您的第一种情况下, Controller 将两个请求区分开来,因为它是在类型级别本身解析的。当您在方法级别使用 @RequestParam 时,您可以通过将 required 标志设置为 false 来选择将参数设置为 Optional很难分离出你的端点,因此会出错。

关于spring - 使用@RequestParam 时出错但用作参数 Java/Spring 时不出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57058414/

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