假设一个类使用@Service注释,Spring是否保证注入类的唯一实例?或者我应该在每项服务上加上@Scope(“singleton”)吗?
The singleton scope is the default scope in Spring
所以没有必要明确地设置它.