spring基于注解的ioc04
程序员文章站
2022-05-23 14:58:41
...
spring基于注解的ioc04
通过注解来配置ioc容器其实也是实现了xml的配置,只是配置的方式不同而已
搭建基于注解的环境
在bean.xml中从新配置约束,并且导入context标签来扫描我们的包
bean.xml:
<?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
http://www.springframework.org/schema/context/spring-context.xsd">
<context:component-scan base-package="cn.itcast"></context:component-scan>
</beans>
创建bean对象并且存入ioc容器中的注解
@Component
属性:value:用于指定bean的id,但我们不写的时候,默认值为当前类名,且首字母小写
@Component
public class AccountServiceImpl implements IAccountService {
}
@Controller: 一般用于表现层
@Service : 一般用于业务层
@Repostiory: 一般用于持久层
以上三个主页他们的作用和@Component是一模一样的.
他们三个是spring框架为我们提供明确的三层使用的注解,是我们的三层对象更加清晰
用于注入数据的注解
@Autowired
作用:自动按照类型注入.只要容器中有唯一的一个bean对象类型和要注入的类型匹配,就可以注入成功
可以在变量上也可以在方法上
使用这个注解,set方法注入就不是必须的
@Service
public class AccountServiceImpl implements IAccountService {
@Autowired
private IUserDao userDao;
}
@Qunalifier:
作用:再按照类中注入的基础上再按照名称注入.它给类成员注入时不能单独使用.但是给方法参数注入式可以
属性:value:用于指定注入bean的id.
注意:此注解必须跟@Autowired一起使用
@Resource
作用:直接按照bean的id注入.它可以直接使用
属性:name:用于指定bean的id.
@Service
public class AccountServiceImpl implements IAccountService {
@Resource("accountDao2")
private IUserDao userDao;
}
以上三个注入都只能注入其他bean类型的数据,而基本类型的String 类型无法使用上述注解实现
另外,集合类型的注入只能通过xml类型实现
@Value
作用:用于注入基本类型和String类型的数据
属性:value 用于指定数据的值.可以使用spring的el表达式
${表达式}
用于改变作用范围的注解
@Scope
作用:用于指定bean对象的作用范围
属性:value:指定范围的取值 常用取值: singleton 单例(默认) prototype 多例
@Service
@Scope("prototype ")
public class AccountServiceImpl implements IAccountService {
@Resource()
private IUserDao userDao;
}