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

org.webframe.web.springmvc.SpringMVCModulePluginDriver Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
/*
 * wf-web-springmvc
 * Created on 2011-6-28-下午08:36:07
 */

package org.webframe.web.springmvc;

import org.webframe.support.driver.AbstractModulePluginDriver;
import org.webframe.support.driver.ModulePluginManager;

/**
 * @author 黄国庆 
 * @version $Id: codetemplates.xml,v 1.1 2009/09/07 08:48:12 Exp $ Create: 2011-6-28 下午08:36:07
 */
public class SpringMVCModulePluginDriver extends AbstractModulePluginDriver {

	static {
		ModulePluginManager.registerDriver(new SpringMVCModulePluginDriver());
	}

	/* (non-Javadoc)
	 * @see org.webframe.support.driver.ModulePluginDriver#getModuleName()
	 */
	@Override
	public String getModuleName() {
		return "SpringMVCModule";
	}

	@Override
	public String getSpringContextLocation() {
		return "/spring";
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy