java專案jsp報錯
有時在匯入maven專案時,jsp頁面一直報錯,具體解決方法及步驟如下:
1、在pom.xml設定檔中加入javax.servlet的相關依賴:
<dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> </dependency>
2、依賴tomcat類別庫:
專案右鍵—>build path —> configure build path — >libraries — > add libraries —> Server Runtime — >選擇一個伺服器lib —> ok
#3、若無法解決報錯,請繼續操作
點選windows—>Preferences—>Validation—>把Show a confirmation dialog when performng manual validations 前邊的√去掉—>Disable All —> apply —> ok
推薦教學:java教學
#以上是java專案jsp報錯的詳細內容。更多資訊請關注PHP中文網其他相關文章!