當前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
8、SpringBoot-CRUD默认访问的首页以及thyleaf的静态文件引入/WebMvcConfigurer / WebMvcConfigurationSupport...
生活随笔
收集整理的這篇文章主要介紹了
8、SpringBoot-CRUD默认访问的首页以及thyleaf的静态文件引入/WebMvcConfigurer / WebMvcConfigurationSupport...
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
1、導入資源
?
2、默認的訪問首頁
(1)、將代碼寫在controller中
@RequestMapping({"/","index.html"}) public String index(){return "index"; }?
(2)、
WebMvcConfigurerAdapter 已經過時,了解即可?
推薦使用:WebMvcConfigurer / WebMvcConfigurationSupport 此時默認訪問的/?以及?index.html都是一個請求相應同一個頁面 @Bean public WebMvcConfigurer webMvcConfigurer(){return new WebMvcConfigurer(){@Overridepublic void addViewControllers(ViewControllerRegistry registry) {registry.addViewController("/").setViewName("index");registry.addViewController("/index.html").setViewName("index");}}; }(3)、
使用thymeleaf引入資源文件 默認去webjars。。。。 <head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"><meta name="description" content=""><meta name="author" content=""><title>Signin Template for Bootstrap</title><!-- Bootstrap core CSS --><link href="asserts/css/bootstrap.min.css" th:href="@{/webjars/bootstrap/4.1.3/css/bootstrap.css}" rel="stylesheet"><!-- Custom styles for this template --><link href="asserts/css/signin.css" th:href="@{/asserts/css/signin.css}" rel="stylesheet"> </head>將需要使用到的地方均進行修改
?
轉載于:https://www.cnblogs.com/Mrchengs/p/10340171.html
總結
以上是生活随笔為你收集整理的8、SpringBoot-CRUD默认访问的首页以及thyleaf的静态文件引入/WebMvcConfigurer / WebMvcConfigurationSupport...的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: kafka笔记3(生产者)
- 下一篇: 监控nginx