修改 Spring Boot 預設頁面

2022-08-03 01:45:10 字數 906 閱讀 3429

spring boot 預設的歡迎介面是 main/resources/static/index.html 。

原先的 webmvcconfigureradapter 已過時了,改為繼承 webmvcconfigurationsupport 類 或 實現 webmvcconfigurer 介面。

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.webmvcconfigurationsupport;

@configuration

public class defaultviewconfig extends webmvcconfigurationsupport

}

通過編寫配置類,繼承 webmvcconfigurationsupport 類,重寫 addviewcontroller( ) 方法。

registry.addviewcontroller("/").setviewname("login.html");
該段**相當於

@controller

public class testcontroller

}

瀏覽器中訪問 http://localhost:8080/ 可訪問 main/resources/static/login.html 。

apache的預設頁如何修改

轉 apache的預設頁可以在作為全域性的apache2.conf或者httpd.conf檔案中修改,也可以在特定的虛擬主機配置檔案中修改。全域性修改影響的是所有apache配置,而虛擬主機配置檔案修改只影響相應的虛擬主機。修改的引數都是directoryindex 典型的配置如下 director...

修改spring boot預設的8080埠

8080埠被使用的比較多,apache2和tomcat這些都預設使用的8080埠,在使用springboot時,預設也是8080埠,如果被占用的話可以通過下面方式來修改。加入server.port 8081現在通過 http localhost 8081即可訪問。建立的乙個democontrolle...

Spring Boot入門案例修改預設配置 二

spring boot官方聲稱搭建web應用開箱即用,其根本原因就是底層封裝好大部分的約束和配置,而作為合格的開發者,肯定要對這些配置有點好奇心,修改定製成自己的web應用才能用得舒服。最近在學習springboot時搜尋網上的一些教程看到修改banner的教程,也嘗試了一把,記錄這個好玩的東西。首...