cannot load JSTL taglib within embedded Jetty server

后端 未结 10 789
太阳男子
太阳男子 2020-12-10 11:55

I am writing a web application that runs within an embedded Jetty instance.

When I attempt to execute a JSTL statement, I receive the following exception:

10条回答
  •  一向
    一向 (楼主)
    2020-12-10 12:33

    • jstl-1.2.jar
    • standard-1.1.2.jar

    This collides. Remove the standard-1.1.2.jar. You should use standard-1.1.2.jar only with jstl-1.1.2.jar. Since JSTL 1.2 the standard JAR has been merged into JSTL JAR, resulting in a single jstl-1.2.jar file.

提交回复
热议问题