Tomcat EL not working under Idea 5

Since I couldn't find specific references to this, I'm assuming I'm missing something small. Still can't figure this out though.

If I create a test project under Idea with a test1.jsp page with the code listed below, it will only process the EL if "" is included in the JSP page. If I manually copy this page to a default document directory under the Tomcat instance running under Idea, it works fine. I'm guessing there's something up with the Tomcat configuration files, but all attempts to enable this directly in the server.xml and web.xml configs have failed. Anyone have a suggestion? <%@ page isELIgnored="false" %> <%@ page contentType="text/html;charset=UTF-8" language="java" %> <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> Simple jsp page <% java.util.HashMap map = new java.util.HashMap(); map.put("key One", "value One"); map.put("key Two", "value Two"); map.put("key Three", "value Three"); map.put("key Four", "value Four"); map.put("key Five", "value Five"); pageContext.setAttribute("map", map); %> TEST3: ]]>

0
1 comment

Forgot to add, this is for Tomcat 5.5+ with JDK 5.

0

Please sign in to leave a comment.