Spring Boot 最大的特点是无需 XML 配置文件,能自动扫描包路径装载并注入对象,并能做到根据 classpath 下的 jar 包自动配置
1、@Configuration:ref---org.springframework.context.annotation.Configuration 替代applicationContext.xml
1.1@Bean:代替 XML 配置文件里面的 <bean ...>
1.2
@ImportResource:有些通过类的注册方式配置不了的,可以通过这个注解引入额外的 XML 配置文件;怎么用呢?
1.3@Import:用来引入额外的一个或者多个 @Configuration
修饰的配置文件类
2、@ComponentScan:ref----org.springframework.context.annotation.ComponentScan 代替配置文件中的 component-scan
默认扫描@SpringBootApplication所在类的同级目录和它的子目录,注册 bean 实例到 context 中。
备注:在实际的开发中,我们可能不需要某一项进行自动配置。这时候如何设置?
比如:项目中不需要redis自动配置:找到自动配置中对应的后缀为:*AutoConfiguration.class文件
只需要在@SpringBootApplication注解后面添加(exclude={RedisAutoConfiguration.class})
3、@EnableAutoConfiguration:ref---org.springframework.boot.autoconfigure.EnableAutoConfiguration(可知是属于springboot)
启动自动配置,该注解会使Spring Boot根据项目中配置的依赖,自动配置所需的依赖jar包:比如:我们添加了spring-boot-starter-web配置,Spring Boot会自动配置tomcat、Spring MVC等
-------
关闭自动配置:
-------
@SpringBootApplication
注解就包含了以上 3 个主要注解
Example:
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
@SpringBootConfiguration
@EnableAutoConfiguration
@ComponentScan(excludeFilters = {
@Filter(type = FilterType.CUSTOM, classes = TypeExcludeFilter.class),
@Filter(type = FilterType.CUSTOM, classes = AutoConfigurationExcludeFilter.class) })
public @interface SpringBootApplication {
...
}