All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.spring.vfs.context.DelegatingDispatcherServlet Maven / Gradle / Ivy

There is a newer version: 4.0.0.Final
Show newest version
package org.jboss.spring.vfs.context;

import org.springframework.web.servlet.DispatcherServlet;

/**
 * @author Marius Bogoevici
 */
public class DelegatingDispatcherServlet extends DispatcherServlet {

    @Override
    public Class getContextClass() {
        if (ContextClassUtil.isJBossAS5orHigher()) {
            return ContextClassUtil.getVFSWebContextClass();
        } else {
            return super.getContextClass();
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy