Spring Boot注解

一、注解列表

@RestController:spring4.0之后的一个注解,表示@Controller和@ResponseBody之和。
@SpringBootApplication:包含@SpringBootConfiguration、@EnableAuto-Configuration和@ComponentScan,开启了包扫描、配置和自动配置的功能。
@RequestMapping:配置请求的Url映射。
@Value("${属性名}"):读取配置文件的变量。
@ConfigurationProperties:表明该类为属性类,并加上prefix。
@component:把普通pojo实例化到spring容器中。
@EnableConfigurationProperties:使使用 @ConfigurationProperties 注解的类生效。
@Configuration:从Spring3.0,用于定义配置类,可替换xml配置文件。
@PropertySource:用于加载指定的配置文件,1.5之前要加上location。

二、注解代码

@RestController@SpringBootApplicationRequestMapping
Spring Boot注解_第1张图片
@Value("${属性名}")
在这里插入图片描述
Spring Boot注解_第2张图片

@ConfigurationProperties和@component
Spring Boot注解_第3张图片
Spring Boot注解_第4张图片
@EnableConfigurationProperties
Spring Boot注解_第5张图片
*@Configuration和@PropertySource
在这里插入图片描述
Spring Boot注解_第6张图片
Spring Boot注解_第7张图片

你可能感兴趣的:(Spring,Boot)