Spring注解@Component,@Value,@Scope,@PostConstruct和@PerDestory
@Component相当于在xml文件中创建了bean,@Value可以为bean元素属性注入基本数据类型,@Scope是用于指定作用范围,@PostConstruct是bean初始化时的方法,@PerDestory是bean销毁时的方法,再通过代码看下//新建一个Stu接口public interface Stu { public void get();}//新建一个Stu...