Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

EL over Scriptlets

Tags:

java

jsp

what is the advantage of using EL over scriptlets in JSP.EL is said to be scriptfree language

like image 543
giri Avatar asked Dec 11 '25 04:12

giri


1 Answers

EL keeps the JSP free from errorprone raw Java code and forces you to write the JSP according the MVC ideology. Anything which isn't possible with EL (or taglibs like JSTL) would then technically and semantically belong in a real Java class. That's the most major advantage.

like image 88
BalusC Avatar answered Dec 12 '25 18:12

BalusC