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

后端 未结 6 1606
误落风尘
误落风尘 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:28

    You only need to specify this dependency in your Maven POM:

    
        jstl
        jstl
        1.2
    
    

    In my code, this provided everything I needed for the following JSP taglib to work:

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

提交回复
热议问题