springboot重定向404
时间: 2023-10-19 10:36:11 浏览: 206
Springboot转发重定向实现方式解析
在 Spring Boot 中重定向到 404 页面可以通过自定义错误处理器来实现。你可以按照以下步骤进行操作:
1. 创建一个类,实现 Spring 的 ErrorController 接口:
```java
import org.springframework.boot.web.servlet.error.ErrorController;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class CustomErrorController implements ErrorController {
@RequestMapping("/error")
public String handleError() {
// 处理你的逻辑,例如重定向到自定义的 404 页面
return "redirect:/404";
}
@Override
public String getErrorPath() {
return "/error";
}
}
```
2. 在你的项目中创建一个自定义的 404 页面,例如 `src/main/resources/templates/404.html`。
3. 在 `application.properties` 文件中添加以下配置:
```properties
spring.mvc.throw-exception-if-no-handler-found=true
spring.resources.add-mappings=false
```
这样,当你的应用程序遇到未处理的请求时,它将被重定向到自定义的 404 页面。
请注意,以上代码只是一个示例,你可以根据自己的需求进行修改和定制。
阅读全文