@SpringBootApplicayion = @Configuration + @EnableAutoConfiguration + @Componentscan
并具有三者的默认属性
@Configuration标注在
类
上,相当于xml配置文件中的一堆空间配置 ,作用为:配置Spring容器
。
示例代码如下:
@Configuration public class Application { //无参构造器 public Application() { System.out.println("应用启动"); } } public class myTest { @Test public void test01() { ApplicationContext context = new AnnotationConfigApplicationContext(Application.class); } }
运行结果如下:
@Bean标注在
方法
上,该方法可以返回某个实例,相当于xml文件中的,作用为: 注册对象
。
示例代码如下:
public class Dog { public void sayHello() { System.out.println("hello..."); } } @Configuration public class Application { //无参构造器 public Application() { System.out.println("应用启动"); } //注册对象 @Bean public Dog dog() { return new Dog(); } } public class myTest { @Test public void test01() { ApplicationContext context = new AnnotationConfigApplicationContext(Application.class); Dog dog = (Dog)context.getBean("dog"); dog.sayHello(); } }
运行结果如下:
使用步骤:
@Component和@Bean对比:
- @Bean在@Configuration注解类的内部,所以不需要扫描
- @Component在@Configuration注解类的外部,所以@ComponentScan扫描
功能:根据定义在classpath下的类,自动的给你生成一些Bean,并加载到Spring的Context中。
classpath 等价于 main/java + main/resources + 第三方jar包的根目录。
功能:定义扫描路径,并从路径中找出标识了需要装配
的类装配到spring的bean容器中。
扫描的类:@Component、@Service、@Controller、@Repository
环环无敌大可爱