Scriptlets
Scriptlets allow for Java code to be directly embedded into a JSP page.
They are permitted to produce output to the page, but do not necessarily have to.
If a scriptlet is to produce output to a page, it uses the implicit "out" object.
Example of a scriptlet:
The current date is:
<% out.println(new java.util.Date()); %>