What JAR files are needed for Eclipse to use JSTL so it ultimately works on GAE/J?

后端 未结 6 1590
误落风尘
误落风尘 2021-02-04 07:43

I\'ve been trying for longer than I\'d like to admit to get JSTL working under Eclipse (and ultimately under GAE/J). I\'ve downloaded Eclipse, the Google App Engine Extension f

6条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-04 08:36

    I had the same issue and I simply put the prefix = "c" at the end of the taglib definition

    before:

    <%@ taglib  prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
    

    after:

    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    

    And all warnings disappear from Eclipse.

提交回复
热议问题