Google News
logo
JSP - Interview Questions
How to use JSP EL to get HTTP method name?
We can use pageContext JSP EL implicit object to get the request object reference and use dot operator to get the HTTP method name in JSP page. The JSP EL code for this will be ${pageContext.request.method}.
Advertisement