如何解决springboot中post方法不工作的问题?

问题描述 投票:0回答:0

对于下面的控制器,我的“GET”方法有效,但我的 post 方法无效。错误是不支持“POST”方法。收到 403 禁止错误。

@RequestMapping(value="/comments/submit", method=RequestMethod.POST)
public String addComment(@ModelAttribute("comment") String comment, @ModelAttribute("blogId") int blogId, Model model, HttpServletRequest request, HttpServletResponse response)
{
    try
    {
        Site site = new Site();
        String returnString = responseMsg.getEntity(String.class);
        return "ajax.html.success";
    }
    catch (Exception e)
    {
        logger.error("Exception in CommentsController.addComment()", e);
    }
    return "ajax.error";
}

java spring-boot post keycloak
© www.soinside.com 2019 - 2024. All rights reserved.