Eclipse Maven 專案 index.jsp httpServlet was not found 解決方法

建立好Maven 專案時,有時候會看到index.jsp 有錯誤,但其實還是可以run

只不過通常有錯誤,我們都會想辦法弄掉 

有兩個解決方式:

1.在pom.xml  加入 dependency 

<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>javax.servlet-api</artifactId>
    <version>3.1.0</version>
    <scope>provided</scope>
</dependency>

2. 在 Project Facets 右邊的Runtimes 選擇Server Apply 也可以解決