mirror of
https://github.com/apache/cloudstack.git
synced 2025-12-15 18:12:35 +01:00
Add servlet filter class that is compatible with the Spring Modularization
This commit is contained in:
parent
a7201a81b2
commit
24c0513eea
@ -18,6 +18,8 @@
|
|||||||
*/
|
*/
|
||||||
package org.apache.cloudstack.spring.module.context;
|
package org.apache.cloudstack.spring.module.context;
|
||||||
|
|
||||||
|
import java.util.Arrays;
|
||||||
|
|
||||||
import org.springframework.context.support.AbstractXmlApplicationContext;
|
import org.springframework.context.support.AbstractXmlApplicationContext;
|
||||||
import org.springframework.core.io.Resource;
|
import org.springframework.core.io.Resource;
|
||||||
|
|
||||||
@ -52,4 +54,10 @@ public class ResourceApplicationContext extends AbstractXmlApplicationContext {
|
|||||||
this.applicationName = applicationName;
|
this.applicationName = applicationName;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "ResourceApplicationContext [applicationName=" + applicationName + ", configResources="
|
||||||
|
+ Arrays.toString(configResources) + "]";
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -37,6 +37,7 @@ public class CloudStackSpringContext {
|
|||||||
|
|
||||||
private static final Logger log = LoggerFactory.getLogger(CloudStackSpringContext.class);
|
private static final Logger log = LoggerFactory.getLogger(CloudStackSpringContext.class);
|
||||||
|
|
||||||
|
public static final String CLOUDSTACK_CONTEXT_SERVLET_KEY = CloudStackSpringContext.class.getSimpleName();
|
||||||
public static final String CLOUDSTACK_CONTEXT = "META-INF/cloudstack";
|
public static final String CLOUDSTACK_CONTEXT = "META-INF/cloudstack";
|
||||||
public static final String CLOUDSTACK_BASE = "bootstrap";
|
public static final String CLOUDSTACK_BASE = "bootstrap";
|
||||||
|
|
||||||
|
|||||||
@ -114,7 +114,8 @@ public class DefaultModuleDefinition implements ModuleDefinition {
|
|||||||
if ( ! moduleUrl.equals(selfUrl) ) {
|
if ( ! moduleUrl.equals(selfUrl) ) {
|
||||||
throw new IOException("Resource [" + location() + "] and [" +
|
throw new IOException("Resource [" + location() + "] and [" +
|
||||||
self.getURL() + "] do not appear to be the same resource, " +
|
self.getURL() + "] do not appear to be the same resource, " +
|
||||||
"please ensure the name property is correct");
|
"please ensure the name property is correct or that the " +
|
||||||
|
"module is not defined twice");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -49,6 +49,7 @@ public class CloudStackContextLoaderListener extends ContextLoaderListener {
|
|||||||
public void contextInitialized(ServletContextEvent event) {
|
public void contextInitialized(ServletContextEvent event) {
|
||||||
try {
|
try {
|
||||||
cloudStackContext = new CloudStackSpringContext();
|
cloudStackContext = new CloudStackSpringContext();
|
||||||
|
event.getServletContext().setAttribute(CloudStackSpringContext.CLOUDSTACK_CONTEXT_SERVLET_KEY, cloudStackContext);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
log.error("Failed to start CloudStack", e);
|
log.error("Failed to start CloudStack", e);
|
||||||
throw new RuntimeException("Failed to initialize CloudStack Spring modules", e);
|
throw new RuntimeException("Failed to initialize CloudStack Spring modules", e);
|
||||||
|
|||||||
@ -0,0 +1,61 @@
|
|||||||
|
/*
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
* or more contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. The ASF licenses this file
|
||||||
|
* to you 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.apache.cloudstack.spring.module.web;
|
||||||
|
|
||||||
|
import javax.servlet.Filter;
|
||||||
|
import javax.servlet.FilterConfig;
|
||||||
|
import javax.servlet.ServletException;
|
||||||
|
|
||||||
|
import org.apache.cloudstack.spring.module.factory.CloudStackSpringContext;
|
||||||
|
import org.springframework.beans.factory.config.AutowireCapableBeanFactory;
|
||||||
|
import org.springframework.context.ApplicationContext;
|
||||||
|
|
||||||
|
public abstract class ModuleBasedFilter implements Filter {
|
||||||
|
|
||||||
|
boolean enabled = false;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void init(FilterConfig filterConfig) throws ServletException {
|
||||||
|
String module = filterConfig.getInitParameter("module");
|
||||||
|
CloudStackSpringContext context =
|
||||||
|
(CloudStackSpringContext) filterConfig.getServletContext().getAttribute(CloudStackSpringContext.CLOUDSTACK_CONTEXT_SERVLET_KEY);
|
||||||
|
|
||||||
|
if ( context == null )
|
||||||
|
return;
|
||||||
|
|
||||||
|
ApplicationContext applicationContext = context.getApplicationContextForWeb(module);
|
||||||
|
if ( applicationContext != null ) {
|
||||||
|
AutowireCapableBeanFactory factory = applicationContext.getAutowireCapableBeanFactory();
|
||||||
|
if ( factory != null ) {
|
||||||
|
factory.autowireBean(this);
|
||||||
|
enabled = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void destroy() {
|
||||||
|
enabled = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isEnabled() {
|
||||||
|
return enabled;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user