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

com.ctlok.springframework.web.servlet.view.rythm.Helper Maven / Gradle / Ivy

There is a newer version: 1.4.2
Show newest version
package com.ctlok.springframework.web.servlet.view.rythm;

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

import javax.servlet.http.HttpServletRequest;

/**
 * @author Lawrence Cheung
 *
 */
public class Helper {

	public static HttpServletRequest getCurrentRequest(){
	    try{
    		final ServletRequestAttributes attr = (ServletRequestAttributes) RequestContextHolder.currentRequestAttributes();
    		return attr.getRequest();
	    } catch (IllegalStateException e){
	        return null;
	    }
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy