SpringBoot2.2.6使用spring-boot-validation读取不到自定义配置文件中的属性

SpringBoot2.2.6没有做message.properties文件中属性的自动读取配置。解决方法有两种:

  1. 升级springboot版本到2.6.x以上

  2. 在现有springboot版本的基础上添加以下自定义配置:

复制代码
@Configuration
public class RequestParamValidationConfig implements WebMvcConfigurer {

    private MessageSource messageSource;

    public RequestParamValidationConfig(MessageSource messageSource) {
        this.messageSource = messageSource;
    }


    @Bean
    @Override
    public Validator getValidator() {
        LocalValidatorFactoryBean localValidatorFactoryBean = new LocalValidatorFactoryBean();
        localValidatorFactoryBean.setValidationMessageSource(this.messageSource);
        return localValidatorFactoryBean;
    }

}
spring-boot-starter-validation校验请求参数操作步骤:
  1. 在pom.xml中引入以下配置:
复制代码
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-validation</artifactId>
</dependency>
  1. 在resources下创建 msg文件夹,并创建message.properties文件

  2. 在message.properties文件自定义属性xxx.xxx=自定义提示信息

  3. 在实体类的属性,引用校验注解,例如: @NotEmpty(message="{xxx.xxx}")

  4. 在application.yml中做如下配置:

复制代码
spring:
  messages:
    basename: msg/message
  1. 在controller的请求参数前加 @Validated @RequestBody 实体类 引用名

注意第6步中是Post请求,body传参校验,其余请求方式请自行测试。

相关推荐
Javatutouhouduan5 分钟前
如何系统全面地自学Java语言?
java·后端·程序员·编程·架构师·自学·java八股文
青青丘比特6 分钟前
STL.string(下)
开发语言·c++
正在绘制中7 分钟前
Java重要面试名词整理(八):RabbitMQ
java·面试·java-rabbitmq
悲且狂9 分钟前
文件路径与Resource接口详解
java·学习
jjjxxxhhh12314 分钟前
C++ 模板是为了解决啥问题
开发语言·c++·算法
gz945614 分钟前
Virtualbox安装ubuntu20虚拟机无法打开终端
java·linux·开发语言
奔跑的犀牛先生28 分钟前
C#学习1:初接触,C#的一些基础,和相关报错
开发语言·c#
自律的kkk42 分钟前
mysql基础快速入门
java·数据库·mysql·oracle
alien爱吃蛋挞43 分钟前
List详解
java·list
HackKong1 小时前
高校网络安全_网络安全之道
java·网络·c++·python·学习·web安全·黑客技术