jsp

Getting started with jsp

Remarks#

JSP is a Java view technology running on a server which allows you to write template text in client side languages like HTML, CSS, JavaScript and so on. JSP supports the so-called taglibs which are backed by pieces of Java code with which you can control the page flow and/or output dynamically (programmatically). A well known taglib is JSTL. JSP also supports Expression Language (EL), with syntax like ${} which can be used to access backend data (actually, the attributes which are available in page, request, session and application scopes), mostly in combination with taglibs.

Hello World

Content has been moved back to good ‘ol JSP wiki page

JavaScript

Content has been moved back to good ‘ol JSP wiki page

Installing JSP

Content has been moved back to good ‘ol JSP wiki page


This modified text is an extract of the original Stack Overflow Documentation created by the contributors and released under CC BY-SA 3.0 This website is not affiliated with Stack Overflow