您好,登錄后才能下訂單哦!
這篇文章主要介紹了SpringBoot中的mvc怎么用,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
經典MVC模式中,M是指業務模型,V是指用戶界面,C則是控制器,使用MVC的目的是將M和V的實現代碼分離,從而使同一個程序可以使用不同的表現形式。其中,View的定義比較清晰,就是用戶界面。
關于SpringBoot中的mvc
在SpringBoot中使用mvc與springmvc基本一致,我們甚至可以按照springmvc中的標準來完成控制器的實現。
package com.bdqn.lyrk.study.springboot.controller; import lombok.AllArgsConstructor; import lombok.Data; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; /** * @author chen.nie */ @Controller @RequestMapping("/index") public class IndexController { @GetMapping("/index") public String index() { return "index"; } @GetMapping("/number/{number}/Desc/{desc}") @ResponseBody public BeanEntity bean(@PathVariable ("number") int number, @PathVariable("desc") String desc) { return new BeanEntity(number,desc); } } @Data @AllArgsConstructor class BeanEntity { private int number; private String desc; }
當我們訪問瀏覽器地址時得到對應的結果:
我們可以發現這里跟springmvc中controller寫法無二,其余的service層和dao層也均是按常規寫法,用@Service和@Repository標記service與dao即可。
關于SpringBoot中mvc(靜態資源-視圖)
默認情況下,Spring Boot將從類路徑或ServletContext的根目錄中的名為/static(或/ public或/resources或/META-INF/resources)的目錄提供靜態內容。
在靜態內容當中我們可以放js,css樣式等文件,除Web服務,我們還可以使用Spring MVC來提供動態HTML內容。Spring MVC支持各種模板技術,包括Thymeleaf,FreeMarker和JSP。當然SpringBoot不推薦用JSP來作為視圖層,通常情況我們把模板放在src/main/resources/templates
下。
以下目錄就是典型的模板與靜態資源目錄結構,按照上述規則我們把靜態資源js文件放在static目錄下,模板文件(這里使用的是Freemarker)放在規定的目錄下:
springBoot添加對jsp的支持
原則上來說,SpringBoot不推薦使用Jsp做為視圖層,如果想用Jsp,我們需要包含以下的依賴:
org.springframework.boot spring-boot-starter-tomcat provided org.apache.tomcat tomcat-jasper 8.5.28
在application.properties做相關視圖的配置:
spring.mvc.view.suffix=/WEB-INF/jsp/ spring.mvc.view.prefix=.jsp
感謝你能夠認真閱讀完這篇文章,希望小編分享的“SpringBoot中的mvc怎么用”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。