I have number of values.
I need to pass these values to another page without using the window.location
function sample(cID){
    var clg = ${param.clg};
    $.ajax({
        type : "post",
        url : "sampleShow?clg="+clg+"&cID="+cID+"&level="+level,
        dataType : "json",
        cache : false,
        beforeSend : function(xhr) {
            xhr.setRequestHeader("Accept", "application/json");
            xhr.setRequestHeader("Content-Type", "application/json");
        },
        success : function(response) {
            window.location= "cc"
        },
        error : function(xhr) {
            console.log("error"+xhr.status);
        },
        complete : function() {
        }
    });
}
This is my controller ajax function:
@RequestMapping(value = "sampleShow", method = RequestMethod.POST)
public @ResponseBody
String showc(HttpServletRequest request,Model  model)
{
    model.addAttribute("ccID", request.getParameter("cID"));
    model.addAttribute("clg", request.getParameter("clg"));
    model.addAttribute("level", request.getParameter("level"));
    return "{\"sucess\":\"true\"}";
}
I need to get the values in cc page.
 
     
     
    