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

cn.tom.mvc.handler.Controller Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package cn.tom.mvc.handler;

import java.io.IOException;

import javax.servlet.ServletException;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import cn.tom.mvc.interceptor.ActionInvocation;

public interface Controller {

	public static Logger logger = LoggerFactory.getLogger("HandlerController");
	
	public abstract void enter(ActionInvocation actionInvocation) throws ServletException, IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy