where is JSTL .tld file?

故事扮演 提交于 2019-12-23 07:15:37

问题


I've downloaded the jstl-1.1.2.jar from a Maven repository. I expected the .jar to contain the .tld file for the tags, but it doesn't. Does anyone know where I can find it?


回答1:


JSTL 1.1 consists usually of two files: jstl.jar (the API) and standard.jar (the impl). The TLDs are in the standard.jar.

In our JSTL wiki page you can find the right download link for the both JARs.




回答2:


BalusC was faster with the correct answer, I just want to add that the standard.jar is also available in maven central. Here are the coordinates:

<dependency>
    <groupId>taglibs</groupId>
    <artifactId>standard</artifactId>
    <version>1.1.2</version>
</dependency>


来源:https://stackoverflow.com/questions/6900001/where-is-jstl-tld-file

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!