注解的配置与xml功能是一样的,目的也是一样的。只不过实现的方式不同。
<bean id="accountService" class="com.heng.service.AccountServiceImpl" scope=" " init-method=" " destory-method=" ">
<property name="" value="" |ref="" ></property>
</bean>
用于创建对象的
它们的作用与在xml中编写标签是一样的。
- @Component 用于把当前类对象存入Spring容器中。
属性 : value用于指定bean的id。当我们不写时,它的默认值是当前类名,且首字母改小写;也可以自行指定。
需要告知spring在创建容器中要扫描的包,配置所需要的标签不是在bean的约束中,而是一个名称为context 名称空间和约束中。
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<!--意味着spring将扫描com.heng包内的所有component的注解-->
<context:component-scan base-package="com.heng">
</context:component-scan>
</beans>
- Controller(用于表现层),Service(用于业务层),Repository(用于持久层),这三个注解与Component功能是一样的,它们使我们的三层对象更加清晰。
用于注入数据的
@Autowired:自按照类型注入,只要容器中有唯一的一个bean对象类型和要注入的类型相匹配,就可以注入成功。
出现的位置:可以是变量上,也可以是方法上。
@Controller(value = "accountService")
public class AccountServiceImpl implements IAccountService {
@Autowired
IAccountDao dao =null;
public void saveAccount() {
dao.saveAccount();
}
}
执行成功。
解释 :Spring容器之中有key:String和value:Object,加入Component注解意味着放入了容器,而Autowired则直接在value中寻找相匹配的Object(可以是泛型)。但是如果没有匹配到或匹配了多个在默认情况下会报错。
解决匹配多个时的报错方法:Spring匹配时优先类型(byType),类型匹配了多个,那么按照变量名匹配(byName),将变量名作为id来进行匹配。id是类在声明时@Component(value=“id”)
但是这种方法对变量名提出了很高的要求,因此不常用。
-
Qualifier 注解(需要依靠Autowired使用),就是不用要求变量名是id了,都弄到注解中去了,类似于小瞄准镜。
@Controller(value = "accountService") public class AccountServiceImpl implements IAccountService { @Autowired @Qualifier("accountDao1") IAccountDao accountDao =null; //如果是经常变化的数据并不适用于注入的方法,例如注册操作。 //注入都是不怎么需要变化的数据。 public void saveAccount() { accountDao.saveAccount(); } }
-
@Resource 直接依照bean的id注入,它可以独立使用。
@Controller(value = "accountService") public class AccountServiceImpl implements IAccountService { @Resource(name = "accountDao2") IAccountDao accountDao =null; //如果是经常变化的数据并不适用于注入的方法,例如注册操作。 //注入都是不怎么需要变化的数据。 public void saveAccount() { accountDao.saveAccount(); } }
以上注入都只能注入其他Bean类型的数据,而基本类型和String类型无法使用上述注解实现。集合类型的注入只能依靠xml。
- value 注解注入基本类型和String类型。
@Scope注解,控制单例or多例,默认是单例。在类文件声明前写。(与Component在一起)