前端之家收集整理的这篇文章主要介绍了
java – @Service是否保证Spring中的唯一性?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
假设一个类使用@Service注释,Spring是否保证注入类的唯一实例?或者我应该在每项服务上加上@Scope(“singleton”)吗?
最佳答案
从
docs
The singleton scope is the default scope in Spring
所以没有必要明确地设置它.
原文链接:https://www.f2er.com/spring/432670.html