zoukankan      html  css  js  c++  java
  • org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'GET' not supported解决!

    org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'GET' not supported解决!

    我的controller是

    @RequestMapping(value = "/forum/addBoard", method = RequestMethod.POST)

    页面中是

    " method="POST" onsubmit="return mySubmit()">

    而服务器的是GET方法:所以改成

    @RequestMapping(value = "/forum/addBoard", method = RequestMethod.GET)

    " method="GET" onsubmit="return mySubmit()">

    问题解决!

  • 相关阅读:
    二叉树
    bfs
    E-Gold Coins
    D-We Love MOE Girls
    A
    哈希--查找出现过的数字
    二分查找
    KMP简单应用
    KMP算法(2)
    [JSOI2008]最大数
  • 原文地址:https://www.cnblogs.com/jpfss/p/7742238.html
Copyright © 2011-2022 走看看