如何在 Spring 中管理对象池?
据我了解,在 Spring 中,所有对象默认都被视为单例。 如果 singleton 设置为 false,则每个请求都会提供一个新对象。
但是如果我想池化对象怎么办? 假设设置范围从最少 1 到最多 10 个实例? 使用 Spring 可以吗?
It's my understanding that in Spring, all objects are treated by default as singletons. If singleton is set to false, then a new object will be served at each request.
But what if I wanted to pool objects? Say set a range from a min of 1 to a max of 10 instances? Is this possible using Spring?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
池化可以应用于任何带有 spring 的 POJO。
请参阅此处了解更多信息。
Pooling can be applied to any POJO with spring.
See here for more information.