spring boot
作者:互联网
1.spring boot 常用注解
@RestController :是cootroller 和 @ResponseBody 结合 同时具有俩个功能。
@SpringBootApplication :是sprigBoot启动类注解
@Component :用于将实例化注入到 ioc中。 其他注解@Controller,@Service,@Respositorry的用法跟@Component差不多,比@Componen带有跟过的语义,他们分别对应了控制层,业务层和持久层的类。
标签:RestController,Service,spring,boot,Component,注解 来源: https://www.cnblogs.com/sry5/p/15156741.html