What does the dollar curly brackets ${} mean in JSP?

前端 未结 3 1404
走了就别回头了
走了就别回头了 2021-02-07 00:50

What does ${} means in JSP? For example,


    

        
3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-07 01:35

    its an El expression basically it outputs the value that result from evaluating the expression, to put it simply, it allows you to access the values of the properties of your java beans using "dots" instead of using getters and setters, using it you can access instances of beans that can be in session,request, or page scope

提交回复
热议问题