SpringBoot2.2.6没有做message.properties文件中属性的自动读取配置。解决方法有两种:
-
升级springboot版本到2.6.x以上
-
在现有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校验请求参数操作步骤:
- 在pom.xml中引入以下配置:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
-
在resources下创建 msg文件夹,并创建message.properties文件
-
在message.properties文件自定义属性xxx.xxx=自定义提示信息
-
在实体类的属性,引用校验注解,例如: @NotEmpty(message="{xxx.xxx}")
-
在application.yml中做如下配置:
spring:
messages:
basename: msg/message
- 在controller的请求参数前加 @Validated @RequestBody 实体类 引用名
注意第6步中是Post请求,body传参校验,其余请求方式请自行测试。