6

这是我现在拥有的,效果很好。它所做的只是一个返回项目对象数组的市场类:

我有班级市场

class market {

    public ArrayList<Items> createItems(HashMap<String,String> map) {
        ArrayList<Items> array = new ArrayList<Items>();
        for (Map.Entry<String, String> m : map.entrySet()) {
            Item item = new Item();
            item.setName(m.key());
            item.setValue(m.value());
            array.add(item);
        }
        return array;
    }
}

类 Item 是一个简单的类,具有用于名称和值的 getter 和 setter

这是我的配置文件的外观:

@Configuration
public class MarketConfig {

    @Bean
    public Market market() {
        return new Market();
    }
}

我想如何更改我的代码:( 原因:我不想要

Item item = new Item(); 

在 then 方法中。我希望 Spring 将其注入市场)

class market {

    public Item item;
    //getters and setters for item

    public ArrayList<Items> createItems(HashMap<String,String> map) {
        ArrayList<Items> array = new ArrayList<Items>();
        for (Map.Entry<String, String> m : map.entrySet()) {
             item.setName(m.key());
             item.setValue(m.value());
             array.add(item);
        }
        return array;
    }
}

@Configuration
public class MarketConfig {

    @Bean
    @Scope("prototype")
    public Item item() {
        return new Item();
    }

    @Bean
    public Market market() {
        Market bean = new Market();
        bean.setItem(item());
    }
}

我知道每次调用 item() 时原型作用域都会给我新的 bean;现在我想要 createItems 方法的 for 循环中的每次迭代都有新的 bean。我怎么能告诉春天给我。

我知道的一种方法是做

applicationContext context = new AnnotationConfigApplicationContext();
context.getBean(Item.class);

但是有没有其他方法可以完成我的工作。谢谢

4

2 回答 2

20

是的,您可以使用查找方法按需创建原型方法

public abstract class ItemFactory {

    public abstract Item createItem();

}

现在在 applicationContext.xml 中只需输入以下内容:

<bean id="item" class="x.y.z.Item" scope="prototype" lazy-init="true"/>

并配置工厂:

<bean id="itemFactory" class="x.y.z.ItemFactory">
<lookup-method name="createItem" bean="item"/>
</bean>

现在,为了使用它,您需要做的就是在任何 bean 中自动装配它:

并调用你的查找方法:

@Service 
public class MyService{

   @Autowired
   ItemFactory itemFactory;

   public someMethod(){
      Item item = itemFactrory.createItem();
   } 

}

每次调用时,createItem()您都会收到对新创建的 Item 类实例的引用。

PS:我看到您正在使用@Configuration而不是xml,您需要检查是否可以在配置bean中配置查找方法。

希望能帮助到你。

更新:诀窍很简单:

@Configuration
public class BeanConfig {

    @Bean
    @Scope(value="prototype")
    public Item item(){
        return new Item();
    }


    @Bean
    public ItemManager itemManager(){
        return new ItemManager() {

            @Override
            public Item createItem() {
                return item();
            }
        };
    }
}
于 2013-02-14T18:02:49.467 回答
5

如果您使用的是 Java 8,则可以简化

@Configuration
public class Config {

  @Bean
  @Scope(value = "prototype")
  public Item item() {
      return new Item();
  }

  @Bean
  public Supplier<Item> itemSupplier() {
      return this::item;
  }
}

之后,您可以在 Market 类中使用此供应商来创建原型 Item bean。

@Component
public class Market {

  private final Supplier<Item> itemSupplier;

  @Autowired
  public Market(Supplier<Item> itemSupplier) {
      this.itemSupplier = itemSupplier;
  }

  private Item createItem() {
      return itemSupplier.get();
  }

}

非常简单,不需要额外的工厂 bean 或接口。

于 2016-09-02T12:59:44.587 回答