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

com.mitchellbosecke.pebble.spring.util.ViewUtils Maven / Gradle / Ivy

/**
 *
 */
package com.mitchellbosecke.pebble.spring.util;

import javax.servlet.http.HttpServletRequest;
import org.springframework.web.context.request.RequestContextHolder;
import org.springframework.web.context.request.ServletRequestAttributes;

public class ViewUtils {

  private ViewUtils() {
  }

  public static HttpServletRequest getRequest() {
    ServletRequestAttributes attr = (ServletRequestAttributes) RequestContextHolder
        .currentRequestAttributes();
    return attr.getRequest();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy