📄 dwrcontroller.java
字号:
/*
* Copyright 2005 Joe Walker
*
* 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.directwebremoting.spring;
import java.util.List;
import javax.servlet.ServletConfig;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.directwebremoting.DwrConstants;
import org.directwebremoting.WebContextBuilder;
import org.directwebremoting.WebContextFactory;
import org.directwebremoting.impl.ContainerUtil;
import org.directwebremoting.impl.DwrXmlConfigurator;
import org.directwebremoting.servlet.UrlProcessor;
import org.directwebremoting.util.FakeServletConfig;
import org.directwebremoting.util.Logger;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.BeanCreationException;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.BeanFactoryAware;
import org.springframework.beans.factory.BeanNameAware;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.util.Assert;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.AbstractController;
/**
* A Spring Controller that handles DWR requests. <br/>
* Using this controller allows you to configure DWR entirely in Spring. You do not have to create
* a separate <code>dwr.xml</code> configuration file when using this controller.
*
* <p>The following configuration provides a basic example of how too define this controller as a bean
* in your application context.
*
* <code>
* <pre>
<bean id="dwrController" class="org.directwebremoting.spring.DwrController">
<property name="configurators">
<list>
<ref bean="dwrConfiguration"/>
</list>
</property>
<property name="debug" value="true"/>
</bean>
<bean id="dwrConfiguration" class="org.directwebremoting.spring.SpringConfigurator">
<property name="creators">
<map>
<entry key="<b>mybean</b>">
<bean class="org.directwebremoting.spring.CreatorConfig">
<property name="creator">
<bean class="org.directwebremoting.spring.BeanCreator">
<property name="bean" ref="<b>myBean</b>"/>
</bean>
</property>
</bean>
</entry>
</map>
</property>
</bean>
<-- the bean you want to remote using DWR -->
<bean id="<b>myBean</b>" class="MyBean"/>
</pre></code>
*
* In the near future we want to provide a DWR namespace for Spring, which should allow you to
* something like the following:
* <code>
* <pre>
<dwr:configuration>
<debug/>
</dwr:configuration>
<-- the bean you want to remote using DWR -->
<bean id="<b>myBean</b>" class="MyBean">
<dwr:remote javascript="<b>mybean</b>"/>
</bean>
</pre></code>
* Which should be equivalent to the previous example. Please note that this is still work in progress
* and is therefore subject to change.</p>
*
* @author Joe Walker [joe at getahead dot ltd dot uk]
* @author Bram Smeets
*/
public class DwrController extends AbstractController implements BeanNameAware, InitializingBean, BeanFactoryAware
{
/**
* Is called by the Spring container to set the bean factory. <br/>
* This bean factory is then used to obtain the global DWR configuration from. This global configuration is
* optional as DWR will provide defaults where possible.
* @see org.springframework.beans.factory.BeanFactoryAware#setBeanFactory(org.springframework.beans.factory.BeanFactory)
*/
public void setBeanFactory(BeanFactory beanFactory) throws BeansException
{
container = new SpringContainer();
container.setBeanFactory(beanFactory);
}
/**
* Sets whether DWR should be in debug mode (default is <code>false</code>). <br/>
* This allows access to the debug pages provided by DWR under <code>/[app-ctx]/dwr/</code>.
* <b>NOTE</b>: make sure to not set this property to <code>true</code> in a production environment.
* @param debug the indication of whether to start DWR in debug mode
*/
public void setDebug(boolean debug)
{
this.debug = debug;
}
/**
* Sets the configurators to apply to this controller. <br/>
* The configurators are used to set up DWR correctly.
* @param configurators the configurators to apply to this controller
*/
public void setConfigurators(List configurators)
{
this.configurators = configurators;
}
/**
* Sets whether the default DWR configuration should be included (default is <code>true</code>). <br/>
* This default configuration contains all build-in creators and converters. You normally want this
* default configuration to be included.
* @param includeDefaultConfig the indication of whether to include the default configuration
*/
public void setIncludeDefaultConfig(boolean includeDefaultConfig)
{
this.includeDefaultConfig = includeDefaultConfig;
}
/**
* Is called by the Spring container after all properties have been set. <br/>
* This method actually makes sure the container is correctly initialized and all configurators
* are processed.
* @throws Exception in case setting up fails
* @see org.springframework.beans.factory.InitializingBean#afterPropertiesSet()
*/
public void afterPropertiesSet() throws Exception
{
Assert.notNull(getServletContext(), "The servlet context has not been set on the controller"); //$NON-NLS-1$
Assert.notNull(configurators, "The required 'configurators' property should be set"); //$NON-NLS-1$
// use a fake servlet config as Spring 1.x does not provide ServletConfigAware functionality
servletConfig = new FakeServletConfig(name, getServletContext());
try
{
ContainerUtil.setupDefaults(container);
ContainerUtil.setupFromServletConfig(container, servletConfig);
// TODO: fix this, the default container does not handle this correct in case this is a boolean
container.addParameter("debug", "" + debug);
container.configurationFinished();
// Cached to save looking them up
webContextBuilder = (WebContextBuilder) container.getBean(WebContextBuilder.class.getName());
processor = (UrlProcessor) container.getBean(UrlProcessor.class.getName());
// Now we have set the implementations we can set the WebContext up
WebContextFactory.setWebContextBuilder(webContextBuilder);
}
catch (InstantiationException ex)
{
throw new BeanCreationException("Failed to instansiate", ex); //$NON-NLS-1$
}
catch (IllegalAccessException ex)
{
throw new BeanCreationException("Access error", ex); //$NON-NLS-1$
}
try
{
webContextBuilder.set(null, null, servletConfig, getServletContext(), container);
// The dwr.xml from within the JAR file.
if (includeDefaultConfig)
{
DwrXmlConfigurator system = new DwrXmlConfigurator();
system.setClassResourceName(DwrConstants.FILE_DWR_XML);
system.configure(container);
}
ContainerUtil.configure(container, configurators);
}
catch (Exception ex)
{
log.fatal("init failed", ex); //$NON-NLS-1$
throw ex;
}
finally
{
webContextBuilder.unset();
}
}
/**
* Handles all request to this controller. <br/>
* It delegates to the <code>UrlProcessor</code> and also takes case of setting and unsetting of the
* current <code>WebContext</code>.
* @param request the request to handle
* @param response the reponse to handle
* @throws Exception in case handling of the request fails unexpectedly
* @see org.directwebremoting.WebContext
*/
protected ModelAndView handleRequestInternal(HttpServletRequest request, HttpServletResponse response) throws Exception
{
try
{
// set up the web context and delegate to the processor
webContextBuilder.set(request, response, servletConfig, getServletContext(), container);
processor.handle(request, response);
}
finally
{
webContextBuilder.unset();
}
// return null to inform the dispatcher servlet the request has already been handled
return null;
}
/**
* Is called by the Spring container to set the name of this bean.
* @param name the name of this bean in the Spring container
* @see BeanNameAware#setBeanName(String)
*/
public void setBeanName(String name)
{
this.name = name;
}
/**
* How is this deployed in Spring
*/
private String name;
/**
* Whether to allow access to the debug pages
*/
private boolean debug = false;
/**
* The processor that will actually handle the http requests
*/
protected UrlProcessor processor;
/**
* The builder for the <code>WebContext</code> that keeps http objects local to a thread
* @see org.directwebremoting.WebContext
*/
protected WebContextBuilder webContextBuilder;
/**
* DWRs IoC container (that passes stuff to Spring in this case)
*/
private SpringContainer container;
/**
* The fake ServletConfig
*/
private ServletConfig servletConfig;
/**
* Do we prefix the list of Configurators with a default to read the system
* dwr.xml file?
*/
private boolean includeDefaultConfig = true;
/**
* What Configurators exist for us to configure ourselves.
*/
private List configurators;
/**
* The log stream
*/
private static final Logger log = Logger.getLogger(DwrController.class);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -