I saw this in jsp file, guessed it brought something in. Where does this come from? DB? another source of jsp file? or some scripts?
Asked
Active
Viewed 940 times
-3
-
Duplicate of [What does ${} means in jsp?](http://stackoverflow.com/questions/5736842/what-does-means-in-jsp) – Jun 30 '14 at 02:58
2 Answers
3
the ${}
is a symbol for Java Expression Language
you can check the documentation at Oracle
quote from Oracle :
EL can :
Dynamically read application data stored in JavaBeans components, various data structures, and implicit objects
Dynamically write data, such as user input into forms, to JavaBeans components
Invoke arbitrary static and public methods
Dynamically perform arithmetic operations

Yaje
- 2,753
- 18
- 32