-3

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?

fujy
  • 5,168
  • 5
  • 31
  • 50
user3444463
  • 59
  • 1
  • 6
  • Duplicate of [What does ${} means in jsp?](http://stackoverflow.com/questions/5736842/what-does-means-in-jsp) –  Jun 30 '14 at 02:58

2 Answers2

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
1

This is the Java Expression Language, you can check more info and examples about it in this tag page

Community
  • 1
  • 1
fujy
  • 5,168
  • 5
  • 31
  • 50