1. 程式人生 > >[email protected]眾匯雲聚 QQ群:437393312

[email protected]眾匯雲聚 QQ群:437393312

1.不正確引入springboot jstl的依賴包,可能會出現如下錯誤
The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar files deployed with this application
2.在pom.xml中新增jstl的依賴包即可
    <dependency>
<groupId>jstl</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
3.更新maven即可