跟着刚哥学习Spring框架--通过注解方式配置Bean(四)

组件扫描:Spring能够从classpath下自动扫描,侦测和实例化具有特定注解的组件。

特定组件包括:

  1、@Component:基本注解,识别一个受Spring管理的组件

  2、@Respository:标识持久层组件

  3、@Service:标识业务层组件

  4、@Controller:标识表现层组件

Spring 有默认的命名策略: 使用非限定类名, 第一个字母小写. 也可以在注解中通过 value 属性值标识组件的名称

当在组件类上使用了特定的注解之后, 还需要在 Spring 的配置文件中声明<context:component-scan>
  1、base-package 属性指定一个需要扫描的基类包,Spring 容器将会扫描这个基类包里及其子包中的所有类.
  2、当需要扫描多个包时, 可以使用逗号分隔.
  3、<context:include-filter /><context:exclude-filter />

 1 <!-- 扫描@Controller注解 -->
 2 <context:component-scan base-package="com.hzg.controller" use-default-filters="false">
 3     <context:include-filter type="annotation"expression="org.springframework.stereotype.Controller" />
 4 </context:component-scan>
 5
 6 <!-- 配置扫描注解,不扫描@Controller注解 -->
 7 <context:component-scan base-package="com.hzg.controller">
 8     <context:exclude-filter type="annotation"expression="org.springframework.stereotype.Controller" />
 9 </context:component-scan>

  当使用<context:include-filter />的时候,在<context:component-scan >里必须加上use-default-filters="false",否则不起作用。

  其中属性expression的值不是你的包所在位置,别搞错了,它是你注解的具体类地址。

实例:

  创建包com.hzg.anotation

  创建包com.hzg.anotation.controller

  创建UserController类

 1 @Controller
 2 public class UserController {
 3
 4     @Autowired(required = false)
 5     private UserService userService;
 6     //@Autowired也可以放在setter方法上,那就去掉上面的Autowired注解
 7     public void setUserService(UserService userService) {
 8         this.userService = userService;
 9     }
10
11     public void excute(){
12         System.out.println("UserController excute");
13         userService.diao();
14     }
15 }

  创建包com.hzg.anotation.service

  创建UserService类

 1 @Service
 2 public class UserService {
 3
 4      @Autowired
 5      private UserRepostory userRepostory;
 6      public void diao(){
 7          System.out.println("UserService diao");
 8          userRepostory.save();
 9      }
10  }

  创建包com.hzg.anotation.repostory

  创建UserRepostory接口

1 public interface UserRepostory {
2     void save();
3 }

  创建UserRepostoryImlp类

1 @Repository("userRepostory")
2 public class UserRepostoryImlp implements UserRepostory {
3
4     @Override
5     public void save() {
6         System.out.println("UserRepostory save");
7     }
8 }

  创建configautowire.xml文件

1 <context:component-scan base-package="com.hzg.anotation"></context:component-scan>

  Main方法

1 public static void main(String[] args) {
2  ApplicationContext ctx = new ClassPathXmlApplicationContext("configautowire.xml");
3  UserController userController = (UserController) ctx.getBean("userController");
4  userController.excute();
5 }

  输出接口:

UserController excute
UserService diao
UserRepostory save

其中:

  1、@Autowired(required = false)中required = false的意思是:如果没有这个类的实例化,那么会赋值成NULL,而不是报错。

  2、@Autowired注解可以为成员变量、方法、构造函数赋值。

  3、@Repository("userRepostory")等同于@Repository(value = "userRepostory"),value是默认值,代表给这个Bean

     赋值了id的值,防止有重复的Bean。

  4、如果在UserService类的@Autowired下面使用限定修饰符@Qualifier("userRepostoryImlp"),那么

     @Repository("userRepostory")必须写成@Repository或者写成@Repository("userRepostoryImlp"),否则就有歧义了。

------------------------------------------------------------------------------------------------------------------------

跟着刚哥学习Spring框架系列:

跟着刚哥学习Spring框架--创建HelloWorld项目(一)

跟着刚哥学习Spring框架--Spring容器(二)

跟着刚哥学习Spring框架--通过XML方式配置Bean(三)

跟着刚哥学习Spring框架--通过注解方式配置Bean(四)

跟着刚哥学习Spring框架--AOP(五)

时间: 2024-12-25 19:33:56

跟着刚哥学习Spring框架--通过注解方式配置Bean(四)的相关文章

跟着刚哥学习Spring框架--通过XML方式配置Bean(三)

Spring配置Bean有两种形式(XML和注解) 今天我们学习通过XML方式配置Bean 1. Bean的配置方式 通过全类名(反射)的方式   √ id:标识容器中的bean.id唯一. √ class:bean的全类名,通过反射的方式在IOC容器中创建Bean,所以要求Bean中必须有无参的构造器 2.依赖注入的方式 1)属性注入:通过setter方法注入Bean的属性值或依赖的对象 属性注入使用<Property>元素,使用name指定Bean的属性名称,使用value指定Bean的属

跟着刚哥学习Spring框架--AOP(五)

AOP AOP(Aspect Oriented Programming),即面向切面编程,可以说是OOP(Object Oriented Programming,面向对象编程)的补充和完善.OOP引入封装.继承.多态等概念来建立一种对象层次结构,用于模拟公共行为的一个集合.不过OOP允许开发者定义纵向的关系,但并不适合定义横向的关系,例如日志功能.日志代码往往横向地散布在所有对象层次中,而与它对应的对象的核心功能毫无关系对于其他类型的代码,如安全性.异常处理和透明的持续性也都是如此,这种散布在各

跟着刚哥学习Spring框架--Spring容器(二)

Spring容器 启动Spring容器(实例化容器) -- IOC容器读取Bean配置创建Bean实例之前,必须对它进行实例化(加载启动),这样才可以从容器中获取Bean的实例并使用.  Bean是Spring管理的基本单位,任何的Java对象和组件都被当成Bean处理,容器还负责管理Bean与Bean之间的依赖关系.  两种类型的启动实现   1.BeanFactory:IOC容器的基本实现,是Spring框架的基础设施,面向Spring本身: -- Spring容器最基本的接口就是BeanF

跟着刚哥学习Spring框架--创建HelloWorld项目(一)

1.Spring框架简介 Spring是一个开源框架,Spring是在2003年兴起的一个轻量级的开源框架,由Rod johnson创建.主要对JavaBean的生命周期进行管理的轻量级框架,Spring给JavaEE带来了春天. 2.Spring框架特点 √ 轻量级:不是说他的文件大小很小,指的Spring是非侵入性. 知识点:轻量级框架和重量级框架的区别 轻量级和重量级的框架是以启动程序所需要的资源所决定,比如EJB在启动程序的时候需要消耗大量的资源,内存和CPU,所以是重量级.√ 依赖注入

跟着刚哥学习Spring框架--JDBC(六)

Spring的JDBC框架 Spring JDBC提供了一套JDBC抽象框架,用于简化JDBC开发. Spring主要提供JDBC模板方式.关系数据库对象化方式.SimpleJdbc方式.事务管理来简化JDBC编程 Spring提供了3个模板类: JdbcTemplate:Spring里最基本的JDBC模板,利用JDBC和简单的索引参数查询提供对数据库的简单访问. NamedParameterJdbcTemplate:能够在执行查询时把值绑定到SQL里的命名参数,而不是使用索引参数. Simpl

springmvc3.2+spring+hibernate4全注解方式整合(四)

以上是工程文件,下面开始测试 package test.testservice; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.test.context.ContextConfiguration; import org.springframework.t

spring 注解方式配置Bean

概要: 再classpath中扫描组件 组件扫描(component scanning):Spring能够从classpath下自动扫描,侦测和实例化具有特定注解的组件 特定组件包括: @Component:基本注解,标示了一个受Spring管理的组件(可以混用,spring还无法识别具体是哪一层) @Respository:建议标识持久层组件(可以混用,spring还无法识别具体是哪一层) @Service:建议标识服务层(业务层)组件(可以混用,spring还无法识别具体是哪一层) @Con

spring笔记--通过注解(annotation)配置Bean

Spring能够在classpath下自动扫描,侦测和实例化具有特定注解的组件,这在Spring中成为组件扫描(Component scanning). 特定组件的注解包括: @Component:基本注解,标识了一个受spring管理的组件.   @Repository:标识持久层组件 @Service:标识服务层(业务层)组件 @Controller:标识表现层组件 对于扫描上的组件,Spring有默认的命名策略,使用非限定类名,第一个字母小写,也可以在注解中通过value属性值表示组件的名

跟着刚哥梳理java知识点——变量之间的类型转换(四)

变量之间的类型转换主要包括自动类型转换和强制类型转换. 1.自动类型转换:当容量小的数据类型与容量大的数据类型做运算时,容量小的会自动的转换成容量大的类型. [知识点]: a)char,byte,short ---> int ---> long ---> float ---> double ---> String char c = 'a'; short s = 12; byte b = 125; //char.short和byte之间运算全部自动转换成int int s1 =