404处理

This commit is contained in:
TinyAnts 2022-08-17 16:08:21 +08:00
parent 6b8b046ccd
commit 4a1f201703
1 changed files with 0 additions and 18 deletions

View File

@ -1,18 +0,0 @@
package com.hxkj.admin.config;
import org.springframework.boot.web.server.ErrorPage;
import org.springframework.boot.web.server.ErrorPageRegistrar;
import org.springframework.boot.web.server.ErrorPageRegistry;
import org.springframework.http.HttpStatus;
import org.springframework.stereotype.Component;
@Component
public class ErrorPageConfig implements ErrorPageRegistrar {
@Override
public void registerErrorPages(ErrorPageRegistry registry) {
ErrorPage error404Page=new ErrorPage(HttpStatus.NOT_FOUND,"/index.html" );
registry.addErrorPages(error404Page);
}
}