时间:2021-05-20
这篇文章主要介绍了Spring如何使用注解的方式创建bean,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
第一种使用配置类的方式
1、创建一个bean
package com.springbean;public class Person { private String name; private Integer age ; public Person(String name, Integer age) { this.name = name; this.age = age; } public void setName(String name) { this.name = name; } public void setAge(Integer age) { this.age = age; } public String getName() { return name; } public Integer getAge() { return age; } @Override public String toString() { return "Person{" + "name='" + name + '\'' + ", age=" + age + '}'; }}2、创建配置类:
3、测试
和xml配置文件一样,默认的bean是单例的,如果需要改变为prototype,xml配置文件里是加上scope="prototype",这里PersonConfig配置类中需要加上注解@Scope("prototype")。
介绍一下bean的几种类型的作用域。
不加注解测试:
加上注解@Scope("prototype")测试:
ApplicationContext applicationContext = new AnnotationConfigApplicationContext(PersonConfig.class); Person bean = applicationContext.getBean(Person.class); Person bean2 = applicationContext.getBean(Person.class); System.out.println(bean==bean2);//打印结果为fale我们也可以改变单例时ioc加载的时候就创建实例,只要在我们的PersonConfig配置类中加上@Lazy注解,使用懒加载。测试
public class ApplicationTest { public static void main(String[] args) { ApplicationContext applicationContext = new AnnotationConfigApplicationContext(PersonConfig.class); }}这是时打印栏将不会打印出“已经创建实例”,就实现的单例情况下的懒加载。
第二种使用@import注解的方式
新建一个student类
public class Student {}在配置类PersonConfig上使用@Import注解,这里面可以传入一个数组,用大括号{}
@Configuration@Import({Student.class})public class PersonConfig {测试:
public class DemoTest { ApplicationContext applicationContext = new AnnotationConfigApplicationContext(PersonConfig.class); @Test public void test(){ Student bean = applicationContext.getBean(Student.class); System.out.println(bean); }}打印结果:com.springbean.Student@2c34f934 ,注入成功
还可以在@Import中加入ImportSelector的实现类来实现bean的注入
创建Parent和Teacher类
public class Parent {}public class Teacher {}创建ImportSelector的实现类MyImportSelector,返回需要注入的bean,这里是全类名
public class myImportSelector implements ImportSelector{ @Override public String[] selectImports(AnnotationMetadata annotationMetadata) { return new String[]{"com.springbean.Parent","com.springbean.Teacher"}; }}修改PersonConfig,这里传入实现类MyImportSelector
@Configuration@Import({Student.class, myImportSelector.class})public class PersonConfig {测试:
Parent parent = applicationContext.getBean(Parent.class); Teacher teacher = applicationContext.getBean(Teacher.class); System.out.println(parent); System.out.println(teacher);打印结果:
com.springbean.Parent@3b2cf7abcom.springbean.Teacher@2aa5fe93以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
我们不妨先将spring常用的注解按照功能进行分类1、将普通类加入容器形成Bean的注解日常开发中主要使用到的定义Bean的注解包括(XML方式配置bean暂不
一、spring依赖注入使用方式@Autowired是spring框架提供的实现依赖注入的注解,主要支持在set方法,field,构造函数中完成bean注入,注
前言本文讲解了在Spring应用中创建Bean的多种方式,包括自动创建,以及手动创建注入方式,实际开发中可以根据业务场景选择合适的方案。方式1:使用Spring
一前言本篇内容主要是讲解2个重要的注解使用方式和场景,@Primary,@Qualifier注解;其作用就是消除bean注入时的歧义,能够让spring容器知道
本文实例讲述了Spring条件注解用法。分享给大家供大家参考,具体如下:一点睛Spring4提供了一个更通用的基于条件的Bean的创建,即使用@Conditio