SpringBoot使用@Email报错误

SpringBoot使用@Email报错误_spring


在pom加上

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>

就可以了

SpringBoot使用@Email报错误_Email_02