Spring-----注解实现自动装配(自动匹配属性类型) @Autowired 和 autowire
Posted Alex_TD
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring-----注解实现自动装配(自动匹配属性类型) @Autowired 和 autowire相关的知识,希望对你有一定的参考价值。
1.注解:实现Bean的属性装配
实现注解开发自动装配步骤:
1.导入XML 配置文件头部 约束 增加命名空间
2.注解的支持
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context //增加支持注解的约束
https://www.springframework.org/schema/context/spring-context.xsd"> <context:annotation-config/> //引入注解机制
3.使用注解
@Autowired 匹配byName byType 仍无法匹配加注解@Qualifier(value=“”)指定Bean的ID。
@Resource(name="") 另一种装配注解, 先通过byName,在通过byType,最后通过指定属性name值来匹配装zai。
@Qualifier(value="") 注解自动装配类太多不能实现,用注解指定其唯一值,类似起别名和@Autowired配合使用.(还可以作为给bean 起别名,
以上是关于Spring-----注解实现自动装配(自动匹配属性类型) @Autowired 和 autowire的主要内容,如果未能解决你的问题,请参考以下文章