org.frameworkset.web.servlet.support.ContextExposingHttpServletRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bboss-mvc Show documentation
Show all versions of bboss-mvc Show documentation
bboss is a j2ee framework include aop/ioc,mvc,persistent,taglib,rpc,event ,bean-xml serializable and so on.http://www.bbossgroups.com
The newest version!
/*
* Copyright 2008 biaoping.yin
*
* 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.frameworkset.web.servlet.support;
import java.util.HashSet;
import java.util.Set;
import javax.servlet.http.HttpServletRequest;
import org.frameworkset.util.Assert;
import org.frameworkset.web.servlet.context.WebApplicationContext;
/**
* Title: ContextExposingHttpServletRequest.java
* Description:
* bboss workgroup
* Copyright (c) 2008
* @Date 2010-9-29
* @author biaoping.yin
* @version 1.0
*/
public class ContextExposingHttpServletRequest extends RequestMethodHttpServletRequest {
private final WebApplicationContext webApplicationContext;
private final Set exposedContextBeanNames;
private Set explicitAttributes;
/**
* Create a new ContextExposingHttpServletRequest for the given request.
* @param originalRequest the original HttpServletRequest
* @param context the WebApplicationContext that this request runs in
*/
public ContextExposingHttpServletRequest(HttpServletRequest originalRequest, WebApplicationContext context) {
this(originalRequest, context, null);
}
/**
* Create a new ContextExposingHttpServletRequest for the given request.
* @param originalRequest the original HttpServletRequest
* @param context the WebApplicationContext that this request runs in
* @param exposedContextBeanNames the names of beans in the context which
* are supposed to be exposed (if this is non-null, only the beans in this
* Set are eligible for exposure as attributes)
*/
public ContextExposingHttpServletRequest(
HttpServletRequest originalRequest, WebApplicationContext context, Set exposedContextBeanNames) {
super(originalRequest);
Assert.notNull(context, "WebApplicationContext must not be null");
this.webApplicationContext = context;
this.exposedContextBeanNames = exposedContextBeanNames;
}
/**
* Return the WebApplicationContext that this request runs in.
*/
public final WebApplicationContext getWebApplicationContext() {
return this.webApplicationContext;
}
public Object getAttribute(String name) {
if ((this.explicitAttributes == null || !this.explicitAttributes.contains(name)) &&
(this.exposedContextBeanNames == null || this.exposedContextBeanNames.contains(name)) &&
this.webApplicationContext.containsBean(name)) {
return this.webApplicationContext.getBeanObject(name);
}
else {
return super.getAttribute(name);
}
}
public void setAttribute(String name, Object value) {
super.setAttribute(name, value);
if (this.explicitAttributes == null) {
this.explicitAttributes = new HashSet(8);
}
this.explicitAttributes.add(name);
}
}