Spring_管理bean对象 - - 基于注解

推荐视频:尚硅谷-Spring5框架最新版教程(idea版)

这是我觉得很不错的一套视频,我的spring系列的文章全是学习上述视频的学习笔记

管理bean对象 - - - 基于注解

使用注解的目的:简化xml配置

注解的位置:类、方法、参数

使用格式:@注解名(属性名=属性值,属性名=属性值)

1 基于注解创建对象

4个创建对象的注解

  • component
  • controller
  • service
  • repository

1.1 导入依赖 - - - aop

<!-- 在导入基本包(4核心+1日志=core、bean、context、SpEL + logging)的基础上 -->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-aop</artifactId>
    <version>5.2.9.RELEASE</version>
</dependency>

1.2 配置文件

如果要自动扫描一个包(com.xtc)下的所有类,可以通过下列方式开启组件扫描

<context:component-scan base-package=“com.xtc”/>

如果要扫描"com.xtc.a"包和"com.xtc.b"包,有两个方法,

① <context:component-scan base-package=“com.xtc”/>

② <context:component-scan base-package=“com.xtc.a, com.xtc.b”/>

<?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="com.xtc"/>
</beans>

1.3 基类

@Componet 表示,默认创建对象名为department,及类名的小驼峰命名

相当于:@Component(value=“department”)

相当于:

import org.springframework.stereotype.Component;

@Component
public class Department {
    @Override
    public String toString() {
        return super.toString();
    }
}

1.4 测试类

public class DepartmentTest {

    @Test
    public void test01(){
        ApplicationContext context =
               new  ClassPathXmlApplicationContext("bean8.xml");
        Department department = context.getBean("department", Department.class);
        System.out.println(department.toString());
    }

}

2 两种常见的包扫描策略

2.1 扫描包下,被component注解标注的类

<context:component-scan base-package="com.xtc.entity" use-default-filters="false">
    <context:include-filter type="annotation" expression="org.springframework.stereotype.Component"/>
</context:component-scan>

2.2 不扫描包下,被component注解标注的类

<context:component-scan base-package="com.xtc.entity" use-default-filters="false">
    <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Component"/>
</context:component-scan>

3 基于注解注入属性

三个注入对象的注解:

① @Autowired,按照类型注入

② @Qualifier,按照名称注入,并且与@Autowired一起使用

③ @Resource,安装名称或属性注入。先按照???

一个注入普通属性的注解:

@Value

3.1 @Autowired

基类:UserService,UserServiceImpl,UserDao,UserDaoImpl

package com.xtc.service;

public interface UserService {
    void getImpl();

}
package com.xtc.service.impl;

@Service
public class UserServiceImpl implements UserService {

    @Autowired
    private UserDao userDao;


    public void getImpl(){
        userDao.getImplName();
    }
}
package com.xtc.dao;

public interface UserDao {
    void getImplName();
}

package com.xtc.dao.impl;

@Repository
public class UserDaoImpl implements UserDao {
    public void getImplName() {
        System.out.println(" UserDaoImpl");
    }
}

配置文件

<?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="com.xtc"/>
</beans>

测试方法

@Test
public void test02(){
    ApplicationContext context =
    	new ClassPathXmlApplicationContext("bean9.xml");
    UserService userService = context.getBean("userServiceImpl", UserServiceImpl.class);
    userService.getImpl();
}

3.2 @Qualifier

  • 如果一个接口有多个实现类,那么按类型注入时,可能会因为不知道注入哪个而出错,这是我们要配合Queifier注解,按名称进行注入。来确定唯一的注入对象。

基类,在7.3.1 的基类的基础上,添加一个UserDao的实现类,UserMysqlImpl

package com.xtc.service;

public interface UserService {
    void getImpl();

}
package com.xtc.service.impl;

@Service
public class UserServiceImpl implements UserService {

    @Autowired
    @Qualifier(value = "userDaoImpl")
    private UserDao userDao;


    public void getImpl(){
        userDao.getImplName();
    }
}
package com.xtc.dao;

public interface UserDao {
    void getImplName();
}

package com.xtc.dao.impl;

@Repository
public class UserDaoImpl implements UserDao {
    public void getImplName() {
        System.out.println(" UserDaoImpl");
    }
}
@Repository
public class UserMysqlImpl implements UserDao {
    public void getImplName() {
        System.out.println("UserMysqlImpl");
    }
}

3.3 @Resource

@Resource:按照类型注入

@Resource(value=“className”):按照名称注入

3.4 @Value

@Value(value="王大锤")
private String username;

4 全注解开发

@Configuration					
	相当于:无其他配置的bean.xml
@ComponentScan(basePackages = "com.xtc.entity")		
	开启包扫描,相当于 <context:component-scan base-package="com.xtc.entity"/>

4.1 基类

@Component
public class People {
    private String name;

    public void abc() {
        System.out.println("abc");
    }
}

4.2 配置类

@Configuration
@ComponentScan(basePackages = "com.xtc.entity")
public class SpringConfig {
}

4.3 测试类

public class PeopleTest {
    @Test
    public void test01(){
        ApplicationContext context = new AnnotationConfigApplicationContext(SpringConfig.class);
        People people = context.getBean("people", People.class);
        people.abc();
    }

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值