diff --git a/org.springframework.context/src/main/java/org/springframework/context/support/SimpleThreadScope.java b/org.springframework.context/src/main/java/org/springframework/context/support/SimpleThreadScope.java
new file mode 100644
index 00000000000..c45f2c43129
--- /dev/null
+++ b/org.springframework.context/src/main/java/org/springframework/context/support/SimpleThreadScope.java
@@ -0,0 +1,82 @@
+/*
+ * Copyright 2002-2009 the original author or authors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.springframework.context.support;
+
+import java.util.HashMap;
+import java.util.Map;
+
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
+
+import org.springframework.beans.factory.ObjectFactory;
+import org.springframework.beans.factory.config.Scope;
+import org.springframework.core.NamedThreadLocal;
+
+/**
+ * Thread-backed {@link Scope} implementation.
+ *
+ *
Note that the SimpleThreadScope does not clean up any objects associated
+ * with it. As such, it's typically preferable to use the {@link org.springframework.web.context.request.RequestScope}
+ * in Web environments.
+ *
+ *
For a implementation of a thread-based Scope with support for destruction callbacks, refer to this module.
+ *
+ * @author Eugene Kuleshov
+ * @author Arjen Poutsma
+ * @since 3.0
+ */
+public class SimpleThreadScope implements Scope {
+
+ private static final Log logger = LogFactory.getLog(SimpleThreadScope.class);
+
+ private static final ThreadLocal