spring注解

    前面使用XML配置管理Spring虽然便于集中管理和维护,但是可能导致配置文件变得庞大且难以维护。特别是在处理复杂的配置关系时,XML配置可能会变得非常繁琐。使用注解可以以简洁直观的方式直接在类或方法上进行配置,减少了配置的冗余和错误,提高了代码的可读性和可维护性。

注解代替XML标签

    使用xml时使用的<bean>、< import>等标签甚至是xml文件都可以被注解替代,这些注解的名称和功能如下:

名称说明
@Configuration平替bean.xml文件
@ComponentScan用于指定 Spring 在初始化时应扫描的包路径
@Import平替 <import resource="classpath:">
@Conponent平替<bean>标签
@Controller在Controller层的类上面 @Conponent
@Repository在Dao层的类上面 @Conponent
@Service在Service层的类上面 @Conponent
@Scope平替<bean scope="">
@Lazy平替<bean lazy-init="">
@value使用在字段或者方法上面,用于注入普通数据
@PostConstruct平替<bean init-method="">
@PreDestroy平替<bean destroy-method="">
@Autowired使用在字段或者方法上面,用于注入引用数据(默认按照byType方式进行注入)
@Qualifier使用在字段或者方法上面,搭配@Autowired根据名称进行注入
@Resource根据类型或者名称进行注入
@Bean写在某个方法上面,一般用于注入非自定义的bean

@Component("aaa")
@Scope(value = "singleton")
public class A {
    public A(){
        System.out.println("A的构造方法");
    }

    @PostConstruct //初始化方法
    public void init(){
        System.out.println("A初始化方法的执行");
    }
    @PreDestroy
    public void destroy(){
        System.out.println("A的销毁方法");
    }
    public void a(){
        System.out.println("a的方法");
    }
}
@Controller("bbb")
public class B {
    @Value("188")
    String str;

    @Autowired
    A a;

    public void b(){
        System.out.println("============");
        System.out.println("注入的字符串"+str);
        System.out.println("注入的属性的方法:");
        a.a();
    }
    @Bean("data")
    public Date da(){
        return new Date();
    }
}
/**
 * 要编写一个主配置类,用来代替bean.xml
 */
@Configuration  //代替bean.xml文件
@ComponentScan("com.cc.component")  //解析哪个包下面的注解
public class Spring {
}
public class main {
    public static void main(String[] args) {
        AnnotationConfigApplicationContext app = new AnnotationConfigApplicationContext(Spring.class);
        B bean = (B) app.getBean("bbb");
        A bean1 = (A) app.getBean("aaa");
        bean1.a();
        bean.b();
        Object da = app.getBean("data");
        System.out.println(da);
    }
}

评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值