HTTP Status 405 - Request method ’ GET ’ not supported
请求controller后台报错
@RequestMapping:这是个综合注解,没有指定请求方式,因此可以接收post,get,put,head等的一系列的请求方式
@GetMapping:这是get的请求方式,浏览器默认的就是这种请求方式,是@RequestMapping(method=RequestMethod.GET)的缩写
@PostMapping:这是post的请求方式,是@RequestMapping(method=RequestMethod.POST)的缩写
前端访问数据(这里默认使用的是80端口)
改为@requestMapping(value=“xxx”)即两个(get和post)都可以访问
另外有一处地方:我通过localhost登录时是登录失败的,但我改成127.0.0.1时就可以成功,不知道有哪位大神可以指教指教>-<