Spring中的三种装配方式:
1.在xml中显示装配;
2.在java中显示配置;
3.隐式的自动装配bean
Spring注解开发(指定要扫描的包)
@Component 组件,相当于bean装配
@Value 属性赋值(在属性和set方法上均可)
Component衍生注解(作用相同)
@Repository dao层
@Service service层
@Controller controller层
自动装配注解
1.@Autowired(先默认通过ByType)和@Qualifier(value=“”)(指定)
2.@Resource(默认通过ByName)
xml与注解:
1.xml管理bean
2.注解注入属性