一、在classpath中扫描组件
1.组件扫描:Spring能够从classpath下自动扫描,侦测和实例化具有特定注解的组件。
2.特定组件包括:
@Component:基本注解,标识了一个受Spring管理的组件
@Respository:标识持久层组件
@Service:标识服务层(业务层)组件
@Controller:标识表现层组件
3.对于扫描到的组件,Spring有默认的命名策略;使用非限定类名,第一个字母小写。也可以在注解中通过value属性值标识组件的名称。
4.使用注解后,还需要在Spring的配置文件中声明<context:component-scan>:
有以下属性: base-package 指定需要扫描的基类包。扫描多个包可用逗号分隔
Spring配置文件:
这里需要导入context命名空间,会扫描annotation下的文件, 在pattern指定下,只会扫描repository子包下的 文件
<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:p="http://www.springframework.org/schema/p"
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-4.0.xsd">
<!-- 指定Spring IOC容器扫描的包 -->
<context:component-scan base-package="com.hcx.annotation"
resource-pattern="repository/*.class">
</context:component-scan>
</beans>
添加注解后的一个类:
使用repository注解,并重新设定id值。
@Repository("userRespository")
public class UserRepositoryImpl implements UserRepository{
@Override
public void save() {
System.out.println("UserRepositoryImpl Save");
}
}
main测试方法:
在这里获取UserRepositoryImpl实例的时候,就使用了改变后的id名称“userRespository”
public class Main {
public static void main(String[] args) {
ApplicationContext ctx=new ClassPathXmlApplicationContext("beans-annotation.xml");
TestObject to=(TestObject) ctx.getBean("testObject");
System.out.println(to);
UserController uc=(UserController) ctx.getBean("userController");//id使用类名首字母小写
uc.execute();
UserService us=(UserService) ctx.getBean("userService");
us.add();
//@Repository("userRespository")实现类里可以重新定义id名称
UserRepositoryImpl urimpl=(UserRepositoryImpl) ctx.getBean("userRespository");
urimpl.save();
}
}
二、筛选扫描内容
context:exclude-filter和context:include-filter可以指定包含或者不包含哪些包下内容。其中expression属性值可以是
注解路径或者是类。对应type是annotation/assignable
这个例子中,排除了annotation包下使用@Repository注解的类,注意:expression内容是注解的路径
<context:component-scan base-package="com.hcx.annotation">
<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Repository"/>
</context:component-scan>
该例使用只包含某个子包,需要在scan节点将默认filter过滤器关掉,然后再设定
<context:component-scan base-package="com.hcx.annotation" use-default-filters="false">
<context:include-filter type="annotation" expression="org.springframework.stereotype.Repository"/>
</context:component-scan>
使用类名方式,type=“assignable”
<context:component-scan base-package="com.hcx.annotation" >
<context:exclude-filter type="assignable" expression="com.hcx.annotation.repository.UserRepositoryImpl"/>
</context:component-scan>
三、利用注解建立bean之间的关系
1.使用@Autowired注解
自动装配具有兼容类型的单个Bean属性。构造器、普通字段、有参数的方法都是可以使用
默认情况下使用该注解的属性都需要在IOC容器中,不然会报错。使用required=false属性可以选择不加载。
@Controller
public class UserController {
@Autowired(required=false)
private TestObject test;
@Autowired
private UserService userService;
public void execute(){
System.out.println("UserController execute");
userService.add();
}
}