March 2008
Intermediate to advanced
911 pages
20h 31m
English
Content preview from Head First Servlets and JSP, 2nd Edition


Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
Start your free trial



Expressions become the argument to an out.print()


In other words, the Container takes everything you type between the <%= and %> and puts it in as the argument to a statement that prints to the implicit response PrintWriter out.
When the Container sees this:
<%= Counter.getCount() %>It turns it into this:
out.print(Counter.getCount());If you did put a semicolon in your expression:
<%= Counter.getCount(); %>That would be bad. It would mean this:

Note
NEVER end an expression with a semicolon!
<%= neverPutASemicolonInHere %>
<%= becauseThisIsAnArgumentToPrint() %>