2023-01-05 19:20:21 +08:00
|
|
|
package com.pj.current;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
|
|
|
import org.springframework.boot.web.servlet.error.ErrorController;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
import cn.dev33.satoken.util.SaResult;
|
|
|
|
import jakarta.servlet.http.HttpServletRequest;
|
|
|
|
import jakarta.servlet.http.HttpServletResponse;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 处理 404
|
2023-05-08 13:47:59 +08:00
|
|
|
* @author click33
|
2023-01-05 19:20:21 +08:00
|
|
|
*/
|
|
|
|
@RestController
|
|
|
|
public class NotFoundHandle implements ErrorController {
|
|
|
|
|
|
|
|
@RequestMapping("/error")
|
|
|
|
public Object error(HttpServletRequest request, HttpServletResponse response) throws IOException {
|
|
|
|
response.setStatus(200);
|
|
|
|
return SaResult.get(404, "not found", null);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|