开发者

JasperException: Unable to read TLD "META-INF/c.tld" from JAR file

开发者 https://www.devze.com 2023-03-13 19:03 出处:网络
I\'ve created a custom tag and included the following maven dependency in order to get the required java classes (tagsupport, etc.)

I've created a custom tag and included the following maven dependency in order to get the required java classes (tagsupport, etc.)

    <dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>jsp-api</artifactId>
        <version>2.0</version>
    </dependency>

When I run the project using tomcat, I am getting the following exception "org.apache.jasper.JasperException: Unable to read TLD "META-INF/c.tld" from JAR file".

I've looked at lots of forums and everybody is suggesting to remove jsp-api.jar from the lib to fix this problem. However, I need this jar file in order to use TagSupport and extend it for my custom tag. Any ideas on how to 开发者_运维问答overcome this issue? Thanks.


Try to use this dependency in "provided" scope :

<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>jsp-api</artifactId>
    <version>2.0</version>
    <scope>provided</scope>
</dependency>
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号