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

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

The newest version!
/**
 *
 */
package com.mitchellbosecke.pebble.spring4.util;

import org.springframework.web.context.request.RequestContextHolder;
import org.springframework.web.context.request.ServletRequestAttributes;

import javax.servlet.http.HttpServletRequest;

public class ViewUtils {
  private ViewUtils() {
  }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy