Nick Long
Nick Long

Reputation:

Must use <c:out> in Sun App Server 8.2?

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

Answers (1)

Peter Hilton
Peter Hilton

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

Related Questions