gpt4 book ai didi

model-view-controller - 使用带有 GET 请求的 Spring 3 @Controller 中的命令对象

转载 作者:行者123 更新时间:2023-12-04 18:35:07 24 4
gpt4 key购买 nike

如何在 Spring 3 下的带注释的 Controller 中使用带有 GET 请求的命令对象?

我不想在我的方法的参数中包含一堆 @RequestParams,并且我需要大约 18 个输入 - 所以我希望能够为此请求使用命令对象..

有没有我可以看到的示例代码?我已经使用了 Spring 2.5 - 在那里很容易 - 但是你如何在 Spring 3 的注释下做到这一点?

最佳答案

它的工作方式与 POST 完全相同请求 - 与 @ModelAttribute (实际上,您甚至可以省略 @ModelAttribute - 如果其他选项不适用,处理程序方法的参数被视为模型属性):

@RequestMapping(...)
public ModelAndView foo(@ModelAttribute CommandObject cmd) { ... }

另见:
  • 15.3.2.3 Supported handler method arguments and return types
  • 关于model-view-controller - 使用带有 GET 请求的 Spring 3 @Controller 中的命令对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4217890/

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