1. 程式人生 > >springboot+idea+jsp 404問題

springboot+idea+jsp 404問題

我是這麼解決的

對於單一專案,加入以下jar包即可。

        <!--前臺頁面的支援-->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jstl</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.tomcat.embed</groupId>
            <artifactId>tomcat-embed-jasper</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.tomcat</groupId>
            <artifactId>tomcat-jsp-api</artifactId>
        </dependency>

對於多模組的專案,上面這種方法就不能解決了。多模組解決方法如下:

 

 

 

 

 

如此便可解決!如果有更好的方法請聯絡我,共同學習,分享!