method=RequestMethod.POST报错解决

    xiaoxiao2025-02-15  33

    @RequestMapping(value="/handle_reg.do",method=RequestMethod.POST)和 @RequestMapping(value="/handle_reg.do",method=RequestMethod.POST)都报错,报错为 “[org.springframework.web.servlet.PageNotFound] >>> Request method 'POST' not supported” 

    改为 @RequestMapping(value="/handle_reg.do")后正常

    最新回复(0)