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 common.interceptors.MyInterceptor.java

/**
 *
 * @author demchuck.dima@gmail.com
 */
public class MyInterceptor implements HandlerInterceptor {
    protected final Logger log = Logger.getLogger(getClass());

From source file esd.controller.interceptor.LoginInterceptor.java

/**
 * 
 * 
 * @author zhangjianzong
 * 
 */

From source file com.devnexus.ting.web.interceptor.GlobalDataInterceptor.java

/**
 *
 * @author Gunnar Hillert
 *
 */
public class GlobalDataInterceptor implements HandlerInterceptor {

From source file com.dominion.salud.mpr.web.interceptors.SecurityInterceptor.java

/**
 *
 * @author jcgonzalez
 */
public class SecurityInterceptor implements HandlerInterceptor {

From source file es.upm.fiware.rss.controller.SessionMultiActionController.java

public class SessionMultiActionController implements HandlerInterceptor {

    private static final Logger log = LoggerFactory.getLogger(SessionMultiActionController.class);

    public static final String USER_SESSION = "userSession";

From source file org.grails.plugins.web.filters.CompositeInterceptor.java

/**
 * Composed of other HandlerInterceptor instances.
 *
 * @author mike
 * @author Graeme Rocher
 */

From source file org.parancoe.web.plugin.PluginInterceptor.java

/**
 * Questa classe fa da proxy per tutti gli interceptor configurati nei plugins.
 * Parancoe chiama questo interceptor che poi fa il dispatch a tutti gli
 * interceptor dei plugin.
 *
 * @author paolo.dona@seesaw.it

From source file org.fenixedu.bennu.spring.portal.PortalHandlerInterceptor.java

public class PortalHandlerInterceptor implements HandlerInterceptor {

    @Override
    public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler)
            throws Exception {
        PortalHandlerMethod handlerMethod = (PortalHandlerMethod) handler;

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

/**
 * Spring MVC Interceptor that sets the request's {@link DateTimeZone} from a cookie.
 * Allows the client's timezone to be figured out by JavaScript, then submitted and applied on the server as the default timezone for the request.
 * Useful when you need to render dates in client local time.
 * @author Keith Donald
 */

From source file com.lcw.one.modules.sys.interceptor.LogInterceptor.java

/**
 * REST Api
 * @author Licw
 */
@Transactional
public class LogInterceptor extends BaseService implements HandlerInterceptor {