上传者: 38556668
|
上传时间: 2021-09-20 09:09:42
|
文件大小: 84KB
|
文件类型: PDF
一、注解(annotations)列表
1、@SpringBootApplication
包含了@ComponentScan、@Configuration和@EnableAutoConfiguration注解。
其中@ComponentScan让Spring Boot扫描到Configuration类并把它加入到程序上下文。
2、@ComponentScan
组件扫描,可自动发现和装配一些Bean。
3、@Configuration
等同于Spring的XML配置文件;使用Java代码可以检查类型安全。
4、@EnableAutoConfiguration
自动配置
5、@RestContro