Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Google App 引擎上下文中使用时,Google GUICE Singleton 对象真的是单例的吗?如果不是,我如何确保真正的单身行为?
Guice 单例是仅在创建它的 Guice 注入器下的单例。它不是 JVM 中的单例或任何其他方式。如果您需要并发进程对某些数据有一个一致的视图,您应该使用数据库或其他一些同步方式。