gpt4 book ai didi

spring-mvc - Spring : How can I log the PageNotFound exception in a database?

转载 作者:行者123 更新时间:2023-12-04 01:37:38 25 4
gpt4 key购买 nike

我想在 spring 找不到请求处理程序时记录日志,因为例如,客户端试图使用拼写错误的必需参数访问我们的 REST 服务。

推荐的方法是什么?

最佳答案

我认为它看起来像这样:

 @ExceptionHandler  
@ResponseStatus(value = HttpStatus.NOT_FOUND)
public String handleAllExceptions(Exception e) {
//log your error
return "error.jsp"; /* use the correct view name */
}

希望它能给你正确的方向

关于spring-mvc - Spring : How can I log the PageNotFound exception in a database?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6649604/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com