URL rewriting in servlet

URL rewriting: URL rewriting is a way of appending data at the end of a URL. Data is appended in name-value pair form. Multiple parameters can be appended in one URL with name-value pairs. Syntax: URL?paramName1=paramValue1& paramName2=paramValue2 How to get the parameter value from url in the servlet? HttpServletRequest interface’s getParameter() method is used to get … Read more