Google News
logo
JSP - Interview Questions
What are JSP action tags?
JSP action tags are HTML-like tags that provide useful functionalities such as JSP:useBean is to work with Java Bean, JSP:include a resource, JSP:forward is to forward the request or response, JSP:setProperty is to set a property value in bean object. JSP action tag always starts with JSP : and we can use them in the JSP page directly without any need for configuration changes or importing any library.
Advertisement