SpringBoot web載入位址預設跳轉設定

2021-09-12 23:39:35 字數 623 閱讀 4796

我們在設定完springboot專案之後,需要讓他預設跳轉乙個位址,需要怎麼做呢?答案很是簡單,可以通過springboot-web的configuration配置,把預設的'/' 路徑的路由,轉換為你想要指定的controller的view跳轉位址就行了。

首先我們需要先構造乙個主頁的controller訪問方法:

public modelandview index()

import org.springframework.context.annotation.configuration;

import org.springframework.core.ordered;

import org.springframework.web.servlet.config.annotation.viewcontrollerregistry;

import org.springframework.web.servlet.config.annotation.webmvcconfigureradapter;

@configuration

public class defaultview extends webmvcconfigureradapter

}

Springboot web頁面404問題

使用springboot新建的web專案,介面可以正常訪問。但是h5頁面卻一直404.經過一段時間的探索,springboot中有著約定的設定,靜態資源在統一放在static目錄下包括靜態頁面和靜態資源 css等 動態模板放在templates目錄下。因此,要想訪問html頁面,第一種方式 把頁面放...

SpringBoot Web開發 訪問靜態資源

webmvcauotconfiguration類下的addresourcehandlers 方法 就是新增資源對映 resourceproperties 設定和靜態資源有關的引數,如快取時間等 webjars 以jar包的方式引入靜態資源 引入webjars依賴 我們可從webjars 找到我們想要...

springboot web高階(四) 單元測試

基礎知識,參考 1.入門測試類 最重要的不要忘記類上面的依賴,以及類裡面方法上的 test 底層是junit package com.example.demo import com.example.demo.service.girlservice import org.junit.assert im...