Spring5-Bean注解开发


一、注解说明

@Autowired:自动装配通过类型、名字
@Component:组件,放在类上,说明这个类被Sping管理了,就是bean!
注意:在spring4之后,要使用注解开发,必须要保证aop的包导入了。
使用注解需要导入context约束,增加注解支持,如下:
代码(示例):

<?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"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        https://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        https://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/aop
        https://www.springframework.org/schema/beans/spring-aop.xsd">
    <!--    指定要扫描的包,这个包下的注解就会生效-->
    <context:component-scan base-package="com.liao"/>
    <!--    开启注解支持-->
    <context:annotation-config/>

</beans>

二、属性注入

@Component
这里这个注解的意思,就是说明这个类被Spring接管了,注册到了容器中。
代码(示例):

@Component
  public class User {
    
    
      //相当于<property name="name" value="liao"/>
      @Value("liao")
      public String name;
  }

@Value
这个注解就是在给对象中注入值们也就是相当于
<property name="name" value="liao"/>

三、衍生注解

@Component有几个衍生注解,我们在web开发中,会按照mvc三层架构分层!

 dao [@Repository]
package com.liao.dao;

import org.springframework.stereotype.Repository;

@Repository
public class UserDao {
    
    
    
}
 service [@Service]
package com.liao.service;

import org.springframework.stereotype.Service;

@Service
public class UserService {
    
    
}
 controller [@Controller]
package com.liao.controller;

import org.springframework.stereotype.Controller;

@Controller
public class UserController {
    
    
}

这四个注解功能都是一样的,都是代表将某个类注册到Spring中,装配Bean


四、小结

xml与注解:xml更加万能,适用于任何场合!维护简单方便。注解 不是自己类使用不了,维护相对复杂!
xml与注解最佳实践:xml用来管理bean 。注解只负责完成属性的注入;
我们在使用过程中,只需要注意一个问题:必须让注解生效,就需要开启注解的支持。

猜你喜欢

转载自blog.csdn.net/qq_41409803/article/details/116505323