com.github.antelopeframework.web.ajax.AjaxUtil Maven / Gradle / Ivy
The newest version!
package com.github.antelopeframework.web.ajax;
import javax.servlet.http.HttpServletRequest;
public class AjaxUtil {
public static boolean isAjaxRequest(HttpServletRequest request) {
String requestedWith = request.getHeader("X-Requested-With");
return requestedWith != null ? "XMLHttpRequest".equals(requestedWith) : false;
}
//
// public static boolean isAjaxUploadRequest(WebRequest webRequest) {
// return webRequest.getParameter("ajaxUpload") != null;
// }
private AjaxUtil() {}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy