当前位置:   article > 正文

org.springframework.web.bind.MethodArgumentNotValidException: Validation failed 乱码

org.springframework.web.bind.MethodArgumentNotValidException: Validation failed 乱码

当遇到org.springframework.web.bind.MethodArgumentNotValidException: Validation failed错误,并且错误信息显示为乱码时,这通常意味着Spring MVC在处理验证错误时,错误消息的字符编码没有被正确处理。解决这个问题通常涉及以下几个方面:

1. 确保项目字符集设置正确

确保你的项目文件(特别是.properties.messages等资源文件)使用UTF-8编码保存,并且在IDE和构建工具中都配置了正确的字符集。

2. Spring Boot国际化配置

如果你的应用使用了Spring Boot,并且利用了其国际化的支持,确保application.propertiesapplication.yml中有正确的国际化配置,例如:

spring:
  messages:
    basename: i18n/messages # 指定资源文件的基本名称
    encoding: UTF-8       # 指定资源文件的编码
  • 1
  • 2
  • 3
  • 4

3. 自定义异常处理器

你可以自定义一个全局异常处理器来捕获MethodArgumentNotValidException,并在处理错误消息时显式指定字符编码。下面是一个简单的示例:

import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.validation.FieldError;
import org.springframework.web.bind.MethodArgumentNotValidException;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.RestControllerAdvice;

import java.util.HashMap;
import java.util.Map;

@RestControllerAdvice
public class GlobalExceptionHandler {

    @ExceptionHandler(MethodArgumentNotValidException.class)
    public ResponseEntity<Map<String, String>> handleValidationExceptions(MethodArgumentNotValidException ex) {
        Map<String, String> errors = new HashMap<>();
        ex.getBindingResult().getAllErrors().forEach((error) -> {
            String fieldName = ((FieldError) error).getField();
            String errorMessage = error.getDefaultMessage();
            errors.put(fieldName, errorMessage);
        });
        return new ResponseEntity<>(errors, HttpStatus.BAD_REQUEST);
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24

确保在返回错误信息时,无论是JSON还是其他格式,其内容编码也是正确的。大多数现代Web框架和HTTP客户端默认使用UTF-8,但如果问题依然存在,检查网络传输层是否也有字符编码设置不当的地方。

4. 检查服务器和容器配置

如果你的应用部署在服务器上,还需要确认服务器和应用服务器/容器(如Tomcat、Jetty等)的字符集配置是否正确,包括响应头中的Content-Type是否指定了正确的字符集,如text/html;charset=UTF-8

通过上述步骤,你应该能解决因字符编码问题导致的MethodArgumentNotValidException错误信息乱码问题。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/615235
推荐阅读
相关标签
  

闽ICP备14008679号