简体   繁体   中英

How to create a tag using TagSupport?

When I try to extend TagSupport - no class is found. 在此处输入图像描述

The only place were it is located is javax.servlet.jsp.tagext.TagSupport, but when I add the dependency - here is the exception I have. 在此处输入图像描述

What am I doing wrong to create custom a tag library tag?

Try lowering the version in the pom.xml file (maven file)

    <dependency>
        <groupId>javax</groupId>
        <artifactId>javaee-web-api</artifactId>
        <version>8.0.1</version> //Like this one!
    </dependency>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM