我是 Spring 新手。我有一个 spring bean countService,它是一个单例
public class CountService {
private int doCount() {
String commentsText = null;
List tranIds = new ArrayList();
int count = 0;
// ---business logic----
return count;
}
}
方法变量 commentsText,tranIds 线程安全吗?提前致谢