spring boot整合jsp的那些坑(spring boot 學習筆記之三)

來源:互聯網
上載者:User

標籤:let   star   start   boot   bsp   推薦   tar   dep   目錄結構   

Spring Boot 整合 Jsp

步驟:

1.建立一個spring boot項目

2.修改pom檔案

  <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.tomcat.embed</groupId>
            <artifactId>tomcat-embed-jasper</artifactId>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jstl</artifactId>
        </dependency>

這些依賴一定記得加上!!!

3.建立目錄結構

仔細看下,為了讓webapp的檔案表徵圖上有個小點~~所以重點來了,我們得去設定一下

還有一點,紅框中以前有個Spring的配置,把它刪掉吧。

4.配置路徑

application.properties檔案

spring.mvc.view.prefix= /
spring.mvc.view.suffix= .jsp

5.寫一個Controller和jsp測試下吧,應該沒問題的,對了,如果不行的話記得把pom檔案改為打包方式改為war,

6.總結

Spring Boot是不推薦jsp的,還是用thymeleaf模板吧,還是挺好用的。就這個問題耽誤了大半天,最後算是模模糊糊的搞出來了,效率真的是低。接下來一步一步搭建一個Spring Boot的crud吧。

 

spring boot整合jsp的那些坑(spring boot 學習筆記之三)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.