1. 程式人生 > >在JSP中引入不了標籤庫,但是標籤庫存在,卻依舊報錯Can not find the tag library descriptor for ......

在JSP中引入不了標籤庫,但是標籤庫存在,卻依舊報錯Can not find the tag library descriptor for ......

在JSP中引入不了標籤庫,但是標籤庫存在,卻依舊報錯Can not find the tag library descriptor for ……
在這種情況下只需引入
standard.jar 或者 本身就缺少標籤庫

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