mirror of
https://gitee.com/dromara/sa-token.git
synced 2025-09-19 10:08:07 +08:00
27 lines
723 B
Java
27 lines
723 B
Java
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
|
|
* @author click33
|
|
*/
|
|
@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);
|
|
}
|
|
|
|
}
|