122_Java_Spring5_IOC3_Annotation
IOC 操作Bean管理(基于注解方式)
1 注解
(1)注解是代码特殊标记,格式:@注解名称(属性名称=属性值, 属性名称=属性值..)
(2)使用注解,注解作用在类上面,方法上面,属性上面
(3)使用注解目的:简化 xml 配置
2 Spring 针对 Bean 管理中创建对象提供注解;四个注解功能是一样的,都可以用来创建 bean 实例
(1)@Component 普通组件,创建对象
(2)@Service service层
(3)@Controller web层
(4)@Repository DAO层
3、基于注解方式实现对象创建
1) 引入依赖 spring-aop-5.2.6.RELEASE.jar
2) 开启组件扫描
3) 创建类,在类上面添加创建对象注解
<!-- 开启组件扫描-->
<!-- 1 如果扫描多个包,多个包使用逗号隔开-->
<!-- 2 扫描包上层目录-->
<context:component-scan base-package="com.alexsully"></context:component-scan>
//在注解里面value属性值可以省略不写, 默认值是类名称,首字母小写
@Service(value = "userservice1") //<bean id="userService1" class=".."/> id 对应 value
public class UserService1 {
public void add() {
System.out.println("service1 add.......");
}
}
@Test
public void test1(){
/**
* 执行流程:
* 1 读取配置文件 <context:component-scan base-package="com.alexsully"></context:component-scan>
* 2 查找所有类 @xxx
* 3 创建对象 context1.getBean("userservice1", UserService1.class);
*/
ClassPathXmlApplicationContext context1 = new ClassPathXmlApplicationContext("bean1.xml");
UserService1 userservice1 = context1.getBean("userservice1", UserService1.class);
userservice1.add();
}
4 开启组件扫描细节配置
<?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">
<!--示例 1
use-default-filters="false" 表示现在不使用默认 filter,自己配置 filter
context:include-filter ,设置扫描哪些内容
-->
<context:component-scan base-package="com.alexsully" use-default-filters="false">
<context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
</context:component-scan>
<!--示例 2
下面配置扫描包所有内容 context:exclude-filter: 设置哪些内容不进行扫描
-->
<context:component-scan base-package="com.alexsully">
<!-- expression ==> import org.springframework.stereotype.Controller;-->
<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
</context:component-scan>
</beans>
5、基于注解方式实现属性注入
(1)@Autowired:根据属性类型进行自动装配
第一步 把 service 和 dao 对象创建,在 service 和 dao 类添加创建对象注解
第二步 在 service 注入 dao 对象,在 service 类添加 dao 类型属性,在属性上面使用注解
(2)@Qualifier:根据名称进行注入 和上面@Autowired 一起使用
(3)@Resource: 可以根据类型注入,可以根据名称注入
(4)@Value: 注入普通类型属性
@Service(value = "userService2")
public class UserService2 {
@Value(value = "alex") //@Value:注入普通类型属性, String , Integer等基本数据类型
private String name;
//定义dao类型属性 不需要添加set方法
//添加注入属性注解
// @Autowired //根据类型进行注入
// @Qualifier(value = "userDaoImpl1") // 配合@Autowired一起使用, 一个接口多个实现类,无法精细匹配,根据名称进行注入;
@Autowired
@Qualifier(value ="userDaoImpl_b" )
private UserDao userDao;
public void add() {
System.out.println("service2 add....... + " + name);
userDao.add();
}
}
public interface UserDao {
public void add();
}
@Repository(value = "userDaoImpl_b")
public class UserDaoImpl_b implements UserDao {
@Override
public void add() {
System.out.println("dao_UserDaoImpl_b add.....");
}
}
@Test
public void test2(){
ClassPathXmlApplicationContext context1 = new ClassPathXmlApplicationContext("bean1.xml");
UserService2 userService2 = context1.getBean("userService2", UserService2.class);
userService2.add(); //service2 add....... + alex
}
(3)@Resource: 可以根据类型注入,可以根据名称注入
//在注解里面value属性值可以省略不写, 默认值是类名称,首字母小写
@Service(value = "userservice3") //<bean id="userService1" class=".."/> id 对应 value
public class UserService3 {
//@Resource //根据类型进行注入
@Resource(name = "userDaoImpl_c") //根据名称进行注入 name = "xxx" Javax 扩展包中的注解 优先用@Autowired @Qualifier
private UserDao userDao;
public void add() {
System.out.println("service3 add.......");
userDao.add();
}
}
6、完全注解开发
创建配置类,替代 xml 配置文件
@Configuration //作为配置类,替代xml配置文件
@ComponentScan(basePackages = "com.alexsully")
编写测试类 AnnotationConfigApplicationContext
@Configuration //作为配置类,替代xml配置文件
@ComponentScan(basePackages = "com.alexsully")
public class SpringConfig {
}
@Test
public void test4(){
//加载配置类 AnnotationConfigApplicationContext
AnnotationConfigApplicationContext context_config = new AnnotationConfigApplicationContext(SpringConfig.class);
UserService2 uservice2 = context_config.getBean("userService2", UserService2.class);
uservice2.add();
}
- 点赞
- 收藏
- 关注作者
评论(0)