使用 JavaConfig 在 SpringMVC 中重定向404頁面
阿新 • • 發佈:2019-02-17
問題
當我們在寫專案中運到404、500等錯誤時,頁面上會顯示如下錯誤資訊:
那麼問題來了,我們可不可以自己定製404錯誤頁面呢
答案當然是Of Course的啦
步驟如下
(1)首先新增 WebMvcConfig 配置類
import org.springframework.boot.context.embedded.ConfigurableEmbeddedServletContainer;
import org.springframework.boot.context.embedded.EmbeddedServletContainerCustomizer;
import org.springframework.boot.web.servlet.ErrorPage;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.http.HttpStatus;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
@Configuration
public class WebMvcConfig extends WebMvcConfigurerAdapter {
@Bean
public EmbeddedServletContainerCustomizer containerCustomizer(){
return new EmbeddedServletContainerCustomizer() {
@Override
public void customize(ConfigurableEmbeddedServletContainer container) {
ErrorPage error401Page = new ErrorPage(HttpStatus.UNAUTHORIZED, "/401.html" );
ErrorPage error404Page = new ErrorPage(HttpStatus.NOT_FOUND, "/404.html");
ErrorPage error500Page = new ErrorPage(HttpStatus.INTERNAL_SERVER_ERROR, "/500.html");
container.addErrorPages(error401Page,error404Page,error500Page);
}
};
}
}
(2)然後將我們製作的404.html、500.html放在static目錄下就OK了。
此時我們再啟動專案,隨便輸入一個訪問地址就會發現重定向到了我們的404.html