我想创建一个单身birt对象,因为birt对象是重量级的对象,我是这个技术的新手,所以任何帮助都会被暗示。
答案 0 :(得分:0)
在应用程序上下文中对此对象使用singleton scope:
<bean id="accountController" class="com.foo.DefaultAccountController" />
<!-- (singleton scope is the default) -->
<bean id="accountService" class="com.foo.DefaultAccountService" />
然后你可以像这样在一些声明的bean中自动装配依赖:
public class DefaultAccountController {
@Autowired
private DefaultAccountService accService;
...
}
详细信息可在Spring documentation。
中找到