| 1234567891011121314151617181920 |
- package com.izouma.awesomeAdmin.config;
- import org.springframework.boot.web.server.ConfigurableWebServerFactory;
- import org.springframework.boot.web.server.ErrorPage;
- import org.springframework.boot.web.server.WebServerFactoryCustomizer;
- import org.springframework.context.annotation.Bean;
- import org.springframework.context.annotation.Configuration;
- import org.springframework.http.HttpStatus;
- @Configuration
- public class ErrorPageConfig {
- @Bean
- public WebServerFactoryCustomizer<ConfigurableWebServerFactory> webServerFactoryCustomizer() {
- return (factory -> {
- ErrorPage errorPage404 = new ErrorPage(HttpStatus.NOT_FOUND, "/static/admin/index.html");
- factory.addErrorPages(errorPage404);
- });
- }
- }
|