JSP 如何使用TagSupport创建标记?

eiee3dmh  于 2022-12-16  发布在  其他
关注(0)|答案(1)|浏览(145)

当我尝试扩展TagSupport时-没有找到类。x1c 0d1x
它所在的唯一位置是javax.servlet.jsp.tagext.TagSupport,但是当我添加依赖项时-这里是例外。

创建自定义标记库标记时,我做错了什么?

carvr3hs

carvr3hs1#

尝试降低pom.xml文件(maven文件)中的版本

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

相关问题