I am learning spring MVC and using JSP as view and willing to use JSP expression tag like
${name }
For this i am using following attribute
<%@ page isELIgnored = "false" %>
But getting eclipse warning (Undefined attribute name "isELIgnored") and my webpage is crashing with below error
Message org.apache.jasper.JasperException: javax.el.ELException: Failed to parse the expression [${...}]
Description The server encountered an unexpected condition that prevented it from fulfilling the request.
Exception
org.apache.jasper.JasperException: org.apache.jasper.JasperException: javax.el.ELException: Failed to parse the expression [${...}]
How can i proceed further?