Spring----学习(10)----通过注解配置bean

1.组件扫描(component scanning):  Spring 能够classpath 下自动扫描, 侦测和实例化具有特定注解的组件.

2.  特定组件包括:(添加注解)

         –@Component: 基本注解, 标识了一个受 Spring 管理的组件

         –@Respository: 标识持久层组件

        –@Service: 标识服务层(业务层)组件

        –@Controller: 标识表现层组件

目录结构:

3. 对于扫描到的组件, Spring 有默认的命名策略: 使用非限定类名, 第一个字母小写.

    也可以在注解中通过 value 属性值标识组件的名称

public static void main(String[] args) {
	ApplicationContext app = new ClassPathXmlApplicationContext(
			"beans-annotation.xml");
	TestObjest to = (TestObjest) app.getBean("testObjest");
	System.out.println(to);

	UserController uc = (UserController) app.getBean("userController");
	System.out.println(uc);

	UserService us = (UserService) app.getBean("userService");
	System.out.println(us);

	UserRepository ur = (UserRepository) app.getBean("userRepository");
	System.out.println(ur);
}

4. 当在组件类上使用了特定的注解之后, 还需要在 Spring 的配置文件中声明 <context:component-scan>

        base-package 属性指定一个需要扫描的基类包Spring 容器将会扫描这个基类包里及其子包中的所有类.

       –当需要扫描多个包时, 可以使用逗号分隔.

       –如果仅希望扫描特定的类而非基包下的所有类,可使用 resource-pattern 属性过滤特定的类,

示例:

              –<context:include-filter> 子节点表示要包含的目标类

             –<context:exclude-filter> 子节点表示要排除在外的目标

             –<context:component-scan> 下可以拥有若干个 <context:include-filter> <context:exclude-filter> 子节点

                         <context:include-filter> <context:exclude-filter> 节点支持多种类型的过滤表达式:

     示例:采用 type="annotation"

<!--context:exclude-filter:子节点指定排除那些指定表达式的组件  -->
<!--context:include-filter:子节点指定包含那些指定表达式的组件,该子节点需要use-default-filters="false"配合使用  -->
<context:component-scan base-package="com.lishenhuan.beans.annotation" use-default-filters="false">
     <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Repository"/> 
     <context:include-filter type="annotation" expression="org.springframework.stereotype.Repository"/>
</context:component-scan>

猜你喜欢

转载自blog.csdn.net/lsh15846393847/article/details/88944913