@RequestMapping(value = "selectById",method = )
时间: 2024-05-31 15:11:25 浏览: 114
简化版@requestmapping注解注册源码
5星 · 资源好评率100%
您这段代码中的 method 参数似乎没有赋值。请问您想使用哪种 HTTP 请求方法,比如 GET 或 POST?您可以将其填写在 method 参数中。例如,如果您想使用 GET 请求方法,可以这样写:
@RequestMapping(value = "selectById", method = RequestMethod.GET)
阅读全文