JSP Tags
There are a set of core JSP1.0 tags that implement JSP-technology specific operations. Additional standard tags are planned, and the user can design their own custom tags.
- jsp:useBean - declares the usage of an instance of a JavaBeans component. If it does not already exist, then the instance is created and registered in the servlet environment. Several properties can be set; notably that the state of the bean is saved for the session or just the page..
- jsp:setProperty - this tag can be used to set all the properties of a Bean from the request parameter stream with parameters of the same name, or can be used to set individual properties.
- jsp:getProperty - gets the property of the Bean, converts it to a String, and puts it into the implicit object “out”.
- jsp:forward - forwards the request to another jsp page or servlet.
- jsp:include - include another jsp page
- jsp:plugin - load into the specified plug-in of the browser