I just started learning JSP technology, and came across a wall.
How do you output HTML from a method in <%! ... %> JSP declaration block?
This do
You can do something like this:
<% out.print("Hey!"); out.print("How are you?"); %>
Hey!
How are you?