Eclipse's auto-complete for JSP tags works with Spring Security tags, but not JSTL core.
I've got the following declarations at the top of the JSP file:
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags" %>
I'm depending on JSTL:
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
...But curiously, JSTL Core never auto-suggests.

.jsp, and even added the file via Eclipse's fancy Create New JSP pseudo-wizardy thing. – Deejay Jun 27 '12 at 13:29