actually delegate from resolveContextualObject to resolveReference

This commit is contained in:
Juergen Hoeller
2008-11-20 19:46:28 +00:00
parent 05bebb0c05
commit 51577b2a07
3 changed files with 10 additions and 4 deletions

View File

@@ -64,7 +64,8 @@ public abstract class AbstractRequestAttributesScope implements Scope {
}
public Object resolveContextualObject(String key) {
return null;
RequestAttributes attributes = RequestContextHolder.currentRequestAttributes();
return attributes.resolveReference(key);
}