SpringBoot笔记3注解
Posted 冷雨落
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot笔记3注解相关的知识,希望对你有一定的参考价值。
底层注解命令
Configuration()
声明主配置类
@Bean() @Component() @Controller() @Service()
声明容器
@ComponentScan()
声明包的扫描
@Import 导入(类,jar包等)
@ContitionalOnBean()
按条件注入
@ImportResource
导入xml文件 例如: classpath:beans.xml
@ConfigurationProperties(prefix="**")
@Conponent+@ConfigurationPropeties 绑定
@Autowired
自动装配对象
自动装配
@SpringBootConfiguration
声明一个配置配置类(合成注解)
@EnableAutoConfiguration
自动配置默认包
@Component()
扫描注解 哪些Spring注解
以上是关于SpringBoot笔记3注解的主要内容,如果未能解决你的问题,请参考以下文章
java SpringBoot 常用注解 比较方法 排序 项目笔记