Spring MVC /Roo - 请求方法“GET”不支持

发布于 2025-01-08 17:36:46 字数 615 浏览 0 评论 0原文

@RequestMapping(value = "/tusers")
@Controller
@RooWebScaffold(path = "tusers", formBackingObject = TUser.class)
public class UserController {


@RequestMapping(value = "/tusers/{id}", produces = "text/html", method = RequestMethod.GET)
public String show(@PathVariable("id") Long id, Model uiModel) {
    uiModel.addAttribute("object", tUserService.findTUser(id));
    uiModel.addAttribute("itemId", id);
    return "tusers/show";
}

为什么这会给我 HTTP 状态 405 - url 不支持请求方法“GET”: http://本地主机:8080/twiter-roo/tusers/1

@RequestMapping(value = "/tusers")
@Controller
@RooWebScaffold(path = "tusers", formBackingObject = TUser.class)
public class UserController {


@RequestMapping(value = "/tusers/{id}", produces = "text/html", method = RequestMethod.GET)
public String show(@PathVariable("id") Long id, Model uiModel) {
    uiModel.addAttribute("object", tUserService.findTUser(id));
    uiModel.addAttribute("itemId", id);
    return "tusers/show";
}

Why does this give me HTTP Status 405 - Request method 'GET' not supported on url: http://localhost:8080/twiter-roo/tusers/1 ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凉城已无爱 2025-01-15 17:36:46

如果这是控制器中的唯一代码,您可以尝试从类的顶部删除 @RequestMapping 注释吗?我认为这是多余的

If that is the only code in the controller, can you try and remove the @RequestMapping annotation from the top of the class? I think it is redundant

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文