求问:@RequestMapping(""),@RequestMapping(" "),@RequestMapping("index")以及@RequestMapping("*")的区别
1条回答 默认 最新
有人把我昵称抢了 2018-12-29 08:26关注@RequestMapping("")访问地址为空:http://localhost:8051
@RequestMapping(" ")访问地址是空格:http://localhost:8051/20%
@RequestMapping("index")访问地址是index:http://localhost:8051/index
@RequestMapping("*")访问地址是*:http://localhost:8051/*解决 无用评论 打赏 举报