@RestController @RequestMapping("/restful/commonUse")
时间: 2023-07-16 17:12:33 浏览: 76
@Controller、@RestController注解区别详解
5星 · 资源好评率100%
这是一个使用Spring框架编写的RESTful风格的API接口,映射到路径"/restful/commonUse"下。其中@RestController注解表示这是一个控制器类,@RequestMapping("/restful/commonUse")注解表示该控制器处理路径为"/restful/commonUse"的请求。
阅读全文