springboot整合jsp

來源:互聯網
上載者:User

標籤:img   檔案資訊   embed   官方   資訊   war包   還需   ati   tomcat   

springboot官方推薦使用模板進行前端頁面的展示,但是不排除項目中也會使用jsp。

使用jsp時,需要進行一下配置:

1. 使用maven建立的項目中packing選用war包

如果沒有選對,也可以在pom.xml的項目資訊中直接修改。

2. 在pom.xml中添加依賴

 除了spring-boot-starter-parent 、spring-boot-starter-web依賴以外,還需要添加下面2個依賴包

    <!-- 使用jsp功能必須引入以下2個依賴 -->    <dependency>        <groupId>org.springframework.boot</groupId>        <artifactId>spring-boot-starter-tomcat</artifactId>    </dependency>    <dependency>        <groupId>org.apache.tomcat.embed</groupId>        <artifactId>tomcat-embed-jasper</artifactId>    </dependency>

2. 添加設定檔資訊

在application.properties中添加下面配置:

#使用jsp時,必須配置以下2個參數spring.mvc.view.prefix=/WEB-INF/jsp/spring.mvc.view.suffix=.jsp

 

springboot整合jsp

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.