@RestController @RequestMapping("/restful/planter") public class PlanterController { @Autowired private UserService userService; }
时间: 2023-06-27 15:08:29 浏览: 104
@Controller、@RestController注解区别详解
5星 · 资源好评率100%
这是一个基于 Spring Boot 框架的 RESTful API,使用 @RestController 和 @RequestMapping 注解定义了一个路径为 "/restful/planter" 的控制器 PlanterController,其中 @Autowired 注解自动注入了一个 UserService 实例。这个控制器可以处理来自客户端的 HTTP 请求,并返回 JSON 格式的响应。
阅读全文