1. 程式人生 > >idea 中main 方法執行錯誤二

idea 中main 方法執行錯誤二

idea在maina方法執行出現錯誤:

Caused by: java.lang.ClassNotFoundException: javax.servlet.http.HttpServletRequest Error: A JNI error has occurred, please check your installation and try again
Exception in thread "main"

網上沒找到,只有eclipse  的,自我思考

原因:

 <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <version>${servlet.version}</version>
            <scope>provided</scope>
        </dependency>

因為javax.servlet 依賴沒引來

解決

把紅圈勾上就可以了