步骤一:在要用注解创建类的类上面添加
@Respository或@Component注解
步骤二:在spring.xml配置文件中扫描注解的标签中(即 <context:component-scan base-package=""></context:component-scan>标签)将加了@Respository或@Component注解的类所在的父包名放在base-package属性值中。扫描到使用注解了。
步骤三:在要使用的类的地方创建该类,并在上面写@Resource注入对象
如:
public class Test{
@Resource
private Message message;
public String test(){
message.setName("张三")
system.out.println(message);
}
}