Example usage for org.springframework.web.servlet HandlerInterceptor interface-usage

List of usage examples for org.springframework.web.servlet HandlerInterceptor interface-usage

Introduction

In this page you can find the example usage for org.springframework.web.servlet HandlerInterceptor interface-usage.

Usage

From source file com.taobao.diamond.server.interceptor.FlowControlInterceptor.java

public class FlowControlInterceptor extends HandlerInterceptorAdapter implements HandlerInterceptor {

    static final Log log = LogFactory.getLog(FlowControlInterceptor.class);

    public static int ORDINAL_403_Forbidden = 403;
    @Autowired

From source file com.taobao.diamond.server.interceptor.ACLControlInterceptor.java

public class ACLControlInterceptor extends HandlerInterceptorAdapter implements HandlerInterceptor {

    static final Log log = LogFactory.getLog(ACLControlInterceptor.class);

    public static int ORDINAL_403_Forbidden = 403;
    @Autowired

From source file com.thoughtworks.go.server.web.FlashMessageInterceptor.java

public class FlashMessageInterceptor implements HandlerInterceptor {
    public FlashMessageInterceptor() {
    }

    public boolean preHandle(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse,
            Object object) {

From source file com.rsmart.certification.impl.LocaleHandlerInterceptor.java

public class LocaleHandlerInterceptor implements HandlerInterceptor {
    private MessageSource messageSource;

    public boolean preHandle(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse,
            Object object) throws Exception {
        ResourceLoader rb = new ResourceLoader();

From source file org.chos.transaction.passport.LoginInterceptor.java

/**
 * 
 * 
 * 
 * @author ada
 * @version 1.0  2015-4-5 ?09:07:51

From source file org.hoteia.qalingo.core.web.mvc.interceptor.RequestPlatformDeviceHandlerInterceptor.java

public class RequestPlatformDeviceHandlerInterceptor implements HandlerInterceptor {

    private final Logger logger = LoggerFactory.getLogger(getClass());

    @Autowired
    protected RequestUtil requestUtil;

From source file org.ihtsdo.otf.refset.interceptor.RequestProcessingTimeInterceptor.java

/**
 *
 */
public class RequestProcessingTimeInterceptor implements HandlerInterceptor {

    private static final Logger LOGGER = LoggerFactory.getLogger(RequestProcessingTimeInterceptor.class);

From source file com.baomidou.framework.spring.DataLoadingInterceptor.java

/**
 * 
 * <p>
 * ?Controller ????
 * </p>
 * <p>

From source file com.springsource.greenhouse.home.UserLocationHandlerInterceptor.java

/**
 * Resolves the user's geo location from client-submitted query parameters, if present in the request.
 * @author Keith Donald
 */
public class UserLocationHandlerInterceptor implements HandlerInterceptor {

From source file com.yuga.ygplatform.modules.sys.interceptor.LogInterceptor.java

/**
 * 
 * @author ThinkGem
 * @version 2013-6-6
 */
public class LogInterceptor extends BaseService implements HandlerInterceptor {