标签: java spring service annotations scope
假设一个类用@Service注释,Spring是否保证注入类的唯一实例?或者我应该在每项服务上加上@Scope("singleton")吗?
@Service
@Scope("singleton")
答案 0 :(得分:10)
来自docs
单例范围是Spring 中的默认范围
单例范围是Spring
所以没有必要明确地设置它。
答案 1 :(得分:1)
以下是我在CodeRanch上发现的讨论:
http://www.coderanch.com/t/586038/Spring/Spring-treat-Service-Singleton
来自另一个Stackoverflow帖子的答案:
https://stackoverflow.com/a/2173019