美文网首页
Spring框架基于注解半XML的 IOC 配置

Spring框架基于注解半XML的 IOC 配置

作者: 月哥说了算 | 来源:发表于2019-07-05 13:17 被阅读0次

    Maven 工程需导入的坐标

    <dependency>
     <groupId>org.springframework</groupId> 
    <artifactId>spring-context</artifactId> 
    <version>5.0.2.RELEASE</version>
    </dependency>
    

    创建 spring 的 xml 配置文件并开启对注解的支持

    Snipaste_2019-07-05_13-00-16.png
    注意:
    基于注解整合时,导入约束时需要多导入一个 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 创建容器时要扫描的包 --> <context:component-scan base-package="com.gzy"></context:component-scan>
    </beans>
    

    使用@Component 注解配置管理的资源

    * 账户的业务层实现类
    * @author gzy
    * @Company 
    * @Version 1.0
    */
    @Component("accountService")
    public class AccountServiceImpl implements IAccountService {
    private IAccountDao accountDao;
    public void setAccountDao(IAccountDao accountDao) {
    this.accountDao = accountDao; } }
    /**
    * 账户的持久层实现类
    * @author gzy
    * @Company 
    * @Version 1.0
    */
    @Component("accountDao")
    public class AccountDaoImpl implements IAccountDao {
    private QueryRunner runner; }
    注意:当我们使用注解注入时,set 方法不用写
    

    测试使用

    /*** 模拟一个表现层,用于调用业务层*/
    public class Client {public static void main(String[] args) {
    //1.获取核心容器对象
    ApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml");
    //2.根据 id 获取 Bean 对象
    IAccountService as = (IAccountService)ac.getBean("accountService");
    System.out.println(as);
    IAccountDao adao = ac.getBean("accountDao",IAccountDao.class);
    System.out.println(adao);
    }
     }
    

    常用注解

    用于创建对象的

    相当于:<bean id="" class="">
    @Component
    作用:
    把资源让 spring 来管理。相当于在 xml 中配置一个 bean。
    属性:
    value:指定 bean 的 id。如果不指定 value 属性,默认 bean 的 id 是当前类的类名。首字母小写。

    @Controller @Service @Repository

    他们三个注解都是针对一个的衍生注解,他们的作用及属性都是一模一样的。
    他们只不过是提供了更加明确的语义化。
    @Controller:一般用于表现层的注解。
    @Service:一般用于业务层的注解。
    @Repository:一般用于持久层的注解。
    细节:如果注解中有且只有一个属性要赋值时,且名称是 value,value 在赋值是可以不写。

    用于注入数据的

    相当于: <property name="" ref=""> <property name="" value="">

    @Autowired

    作用:
    自动按照类型注入。当使用注解注入属性时,set 方法可以省略。它只能注入其他 bean 类型。当有多个
    类型匹配时,使用要注入的对象变量名称作为 bean 的 id,在 spring 容器查找,找到了也可以注入成功。找不到
    就报错。

    @Qualifier

    作用:
    在自动按照类型注入的基础之上,再按照 Bean 的 id 注入。它在给字段注入时不能独立使用,必须和
    @Autowire 一起使用;但是给方法参数注入时,可以独立使用。
    属性:
    value:指定 bean 的 id。

    @Resource

    作用:
    直接按照 Bean 的 id 注入。它也只能注入其他 bean 类型。
    属性:
    name:指定 bean 的 id。

    @Value

    作用:
    注入基本数据类型和 String 类型数据的
    属性:
    value:用于指定值

    用于改变作用范围的:

    相当于:<bean id="" class="" scope="">

    @Scope

    作用:
    指定 bean 的作用范围。
    属性:
    value:指定范围的值。
    取值:singleton prototype request session globalsession


    使用注解式半xml开发总结

    使用注解式半xml开发过程:
    1.在spring的配置文件中 开启包扫描
    可以写多个路径 中间以 , 分割
    <context:component-scan base-package="com.gzy.service,com.gzy.dao"></context:component-scan>
    2.在类上加注解 @Component
    3.如果你的对象需要注入
    在类中声明属性并且在上面加上注解@Resource(name="注入对象的名字")
    4.替代品
    Component======三个替代品 @Controller(web层的东西 学习springmvc用的) @Service(service层对象) @Repository(dao层用的)
    三个替代品 作用等同于 component 但是更能见名知意
    Component Controller Service Repository 四个注解 都是用来 向spring容器声明对象
    当你需要往对象注入属性 使用@Resource注解(name="需要对象名字")
    Resource注解 替代品 @AutoWired
    @AutoWired 实际按照类型注入 一般情况就写这个 一般写的程序 不会出现 两个实现


    纯注解开发:

    1.启动容器 使用哪个类
    new AnnotationConfigApplicationContext(配置类)
    配置类 随便一个类
    类上有注解 configuration
    2.如果启动的帮助扫描包
    在配置类加注解 ComponentScan  等同之前的<context:component-scan base-package="包名"/>
    3.碰到一些自己不能控制类 但是有需要放入容器
    在配置类上 写方法 方法名随意 主要是返回值 返回你想要放入容 
    器中对象替代<bean>
    如果你使用一些第三方对象 对象创建本身需要别的对象
    只要在方法声明你要啥  容器自动将需要传入
    如果传参的时候 有多个实现类对象 @qualifier("需要哪个")
    4.外部属性文件 通过PropertySource 指明外部属性文件位置
    

    总结:
    注解式开发
    学习springboot之前 鼓励的半xml半注解方式
    需要将一个对象创建 交给spring创建 需要在类上加注解
    @component @Controller @service @repository
    需要注入属性
    autoWired注解 根据类型注入 所以保证那个类型 在容器唯一
    前提 必须配置包扫描
    注入外部属性文件
    半xml <context:property-placeholder location="classpath:...文件路径">
    在咱们对象中@value 可以用了
    例如:
    @Value("${msg.username}")
    private String name;

    相关文章

      网友评论

          本文标题:Spring框架基于注解半XML的 IOC 配置

          本文链接:https://www.haomeiwen.com/subject/hswshctx.html