RestApi请求地址支持多路径访问
RestApi请求地址支持多路径访问
@RestController
@RequestMapping("/test") //单路径
@RequestMapping(path = {"/test","/public/test"}) //请求地址支持多路径,字符串数组
RestApi请求地址支持多路径访问
@RestController
@RequestMapping("/test") //单路径
@RequestMapping(path = {"/test","/public/test"}) //请求地址支持多路径,字符串数组