您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關(guān)怎么在Spring boot中映射路徑,小編覺得挺實用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
在spring boot中集成thymeleaf后,我們知道thymeleaf的默認(rèn)的html的路徑為classpath:/templates也就是resources/templates,那如何訪問這個路徑下面的靜態(tài)頁面呢?假設(shè)我們要訪問一個頁面為hello.html。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <h2>hell spring boot!!</h2> </body> </html>
該頁面位于templates下,當(dāng)然也可以在application.properties文件中修改默認(rèn)路徑。
spring.thymeleaf.prefix=classpath:/templates
1.使用controller中的方法直接返回該頁面
@Controller public class HelloController { @GetMapping("/hello") public String hello(){ //在集成thymeleaf后 會在默認(rèn)路徑下尋找名字為hello的html頁面 return "hello"; } }
2.實現(xiàn)WebMvcConfigure接口中的addViewControllers方法進(jìn)行路徑的映射
@Configuration public class WebMvcConfig implements WebMvcConfigurer{ @Override public void addViewControllers(ViewControllerRegistry registry) { //第一個路徑為類似于Controller中的接口的路徑 第二個view為要訪問的頁面 //實現(xiàn)不需要進(jìn)行數(shù)據(jù)渲染的頁面的路徑映射 當(dāng)然這些頁面沒有在默認(rèn)的五個靜態(tài)頁面訪問路徑下 registry.addViewController("/hopec").setViewName("hello"); //如果需要添加多個頁面直接在下面繼續(xù)添加即可 } }
以上就是怎么在Spring boot中映射路徑,小編相信有部分知識點可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。