當前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
SpringBoot设置首页(默认页)跳转
生活随笔
收集整理的這篇文章主要介紹了
SpringBoot设置首页(默认页)跳转
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
SpringBoot設置首頁(默認頁)跳轉
方案1:controller里添加一個"/"的映射路徑
@RequestMapping("/") public String index(Model model, HttpServletResponse response) {model.addAttribute("name", "simonsfan");return "/index"; }方案二:設置默認的View跳轉頁面
@Configuration public class DefaultView extends WebMvcConfigurerAdapter {@Overridepublic void addViewControllers(ViewControllerRegistry registry) {registry.addViewController("/").setViewName("index");registry.setOrder(Ordered.HIGHEST_PRECEDENCE);super.addViewControllers(registry);} }WebMvcConfigurerAdapter過時的替換方法
訪問這里https://blog.csdn.net/qq_43842093/article/details/117770358
總結
以上是生活随笔為你收集整理的SpringBoot设置首页(默认页)跳转的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Java数据库篇8——索引、视图、存储过
- 下一篇: PyQt5 笔记7 -- 多个类共享信号