请求方法' get'春季MVC不支持例外

发布于 2025-01-24 16:46:31 字数 885 浏览 1 评论 0原文

为什么我会得到例外“方法不支持”?我没有在控制器或百里香eaf中写任何获取方法 控制器是:

  @Controller
public class UserController {

    @PostMapping("/register")
    public String showForm(Model model){
        User user=new User();
        model.addAttribute("user",user);
        return "register_form";
    }

}

胸腺法规:

    <!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Spring Boot Registration Form</title>
</head>
<body>
<div align="center">
    <h1>Spring Boot Registration Form</h1>

    <form action="#" th:action="@{/register}" th:object="${user}"
 th:method="post">
        <label>Full Name:</label>
        <input type="text" th:field="*{name}">
    </form>
</div>

</body>
</html>

Why am I getting exception 'method Get not supported'? I dont write any get method in controller or thymeleaf
Controller is:

  @Controller
public class UserController {

    @PostMapping("/register")
    public String showForm(Model model){
        User user=new User();
        model.addAttribute("user",user);
        return "register_form";
    }

}

thymeleaf code:

    <!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Spring Boot Registration Form</title>
</head>
<body>
<div align="center">
    <h1>Spring Boot Registration Form</h1>

    <form action="#" th:action="@{/register}" th:object="${user}"
 th:method="post">
        <label>Full Name:</label>
        <input type="text" th:field="*{name}">
    </form>
</div>

</body>
</html>

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文