求问:@RequestMapping(""),@RequestMapping(" "),@RequestMapping("index")以及@RequestMapping("*")的区别
@RequestMapping("")访问地址为空:http://localhost:8051
@RequestMapping(" ")访问地址是空格:http://localhost:8051/20%
@RequestMapping("index")访问地址是index:http://localhost:8051/index
@RequestMapping("*")访问地址是*:http://localhost:8051/*