Please enable JavaScript.
Coggle requires JavaScript to display documents.
JSP Scripting Elements, Expression, Scriplets, Declarations, Inlcudes -…
-
Expression
-
-
-
Java expression is evaluated, converted to a string, and inserted in the page, This performed at run-time
Scriplets
-
-
Let you insert arbitrary code into the servlet method that will be built to generate the page. It more complex than simple expression
<% if(Math.random() < 0.5) {%> Have a nice day!<%}
Will be converted into:
if(Math.random() <0.5) {out.println("Have a nice day!");}
-
-