Reputation:
I use ${...}
instead of <c:out value="${...}"/>
in JSPs; in tomcat 6.0.10, it can parse it successfully. But in SunOne Application Server 8.2, it doesn't support this kind of usage
Upvotes: 1
Views: 164
Reputation: 17344
Bare EL expressions without c:out
were introduced with JSP 2.0, so it should work because 'Application Server 8.2 complies with the JSP 2.0 specification' (source). Perhaps the problem is that the JSP page in question specifies version 1.1.
Upvotes: 1