Spring中提供以下注解来创建bean实例:
1)@Component
2)@Service
3)@Controller
4)@Repository
以上4个注解的功能是一样的,都可以用来创建bean实例

步骤:
1)引入spring-aop依赖包
2)开启注解扫描,开启后才会去扫描哪个目录下使用了注解

<context:component-scan base-package="com.zong.spring,com.zong.bean"></context:component-scan>

使用过滤器,指定扫描文件

<context:component-scan base-package="com.zong.spring,com.zong.bean" use-default-filters="false">
  //只扫描Controller注解
  <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
  //不扫描Controller注解
  <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
</context:component-scan>

3)在类上面添加注解

@Component(value="userService")
public class UserService{

}

value中的值等于bean.xml文件中的id属性,默认是类名且首字母小写


Zong
7 声望0 粉丝