Possible Duplicate:
getting new bean instances of referencing beans every time




每次获取自动装配类的新实例的最简单方法是什么?

我已经探讨了会话,请求,原型,@ resource。似乎都没有提供所需的效果。

最佳答案

使用@Scope("prototype")

@Service
@Scope("prototype")
public class YourService{}

10-04 19:03