Tomcat 7 and JSTL

前端 未结 9 1582
执念已碎
执念已碎 2020-11-28 21:35

I wrote a web application with Eclipse Tomcat and it works on my local Tomcat 7, when I tried to publish it online on a Tomcat 7, I had the following error:

9条回答
  •  一向
    一向 (楼主)
    2020-11-28 22:11

    For running on apache tomcat 7 adding these into your POM is probably appropriate. These jars don't reference javax.servlet jars like the glassfish ones do, so there is no need for exclusions.

    
        org.apache.taglibs
        taglibs-standard-spec
        1.2.1
    
    
        org.apache.taglibs
        taglibs-standard-impl
        1.2.1
    
    

提交回复
热议问题