Spring中怎么利用@Resource配置依赖

今天就跟大家聊聊有关Spring中怎么利用@Resource配置依赖,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。

创新互联建站主营广丰网站建设的网络公司,主营网站建设方案,重庆App定制开发,广丰h5微信平台小程序开发搭建,广丰网站营销推广欢迎广丰等地区企业咨询

一 配置

   

二 接口

Axe

package org.crazyit.app.service;public interface Axe{   public String chop();}

Person

package org.crazyit.app.service;public interface Person{   public void useAxe();}

三 Bean

Chinese

package org.crazyit.app.service.impl;import org.springframework.stereotype.*;import javax.annotation.*;import org.crazyit.app.service.*;@Componentpublic class Chinese implements Person{  private Axe axe;  // axe的setter方法  @Resource(name="stoneAxe")  public void setAxe(Axe axe)  {    this.axe = axe;  }  // 实现Person接口的useAxe()方法  public void useAxe()  {    // 调用axe的chop()方法,    // 表明Person对象依赖于axe对象    System.out.println(axe.chop());  }}

SteelAxe

package org.crazyit.app.service.impl;import org.springframework.stereotype.*;import org.crazyit.app.service.*;@Componentpublic class SteelAxe implements Axe{  public String chop()  {    return "钢斧砍柴真快";  }}

StoneAxe

package org.crazyit.app.service.impl;import org.springframework.stereotype.*;import org.crazyit.app.service.*;@Componentpublic class StoneAxe implements Axe{  public String chop()  {    return "石斧砍柴好慢";  }}

四 测试类

package lee; import org.springframework.context.*;import org.springframework.context.support.*; import org.crazyit.app.service.*; public class BeanTest{  public static void main(String[] args)  {    // 创建Spring容器    ApplicationContext ctx = new      ClassPathXmlApplicationContext("beans.xml");    Person person = ctx.getBean("chinese" , Person.class);    person.useAxe();  }}

五 测试结果

石斧砍柴好慢

看完上述内容,你们对Spring中怎么利用@Resource配置依赖有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注创新互联行业资讯频道,感谢大家的支持。


本文题目:Spring中怎么利用@Resource配置依赖
网页网址:http://scyanting.com/article/jeogpe.html