@RequestMapping(name="/hello",method=RequestMethod.GET)路径找不到
来源:13-2 SpringBoot的搭建与启动
慕码人7211748
2020-04-22
@RequestMapping(name="/hello",method=RequestMethod.GET)路径找不到(老师视频教学就算这样的)。就算换成POST的@RequestMapping(name="/hello",method=RequestMethod.POST)也是找不到路径
而@RequestMapping("/hello")却可以找到路径,为什吗?如下图
写回答
2回答
-
同学好,是不是RequestMapping里面的逗号是中文字符了。。 感觉没啥问题,因为你的URL本来就是GET请求。。 clean一下试试?
022020-04-24 -
慕码人7211748
提问者
2020-04-24
知道了,name改成value就可以了
352021-04-08
相似问题