import org.springframework.format.annotation.DateTimeFormat;爆红
时间: 2023-10-01 10:07:48 浏览: 72
spring annotation 入门
这是因为你使用了 org.springframework.format.annotation.DateTimeFormat 类,但是没有导入相应的包。你需要在类的开头加上导入语句:
```java
import org.springframework.format.annotation.DateTimeFormat;
```
如果还是有问题,可能是因为你的项目中没有相应的依赖包,需要在项目的 pom.xml 文件中添加相应的依赖:
```xml
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.2.6.RELEASE</version>
</dependency>
```
注意,版本号可能需要根据你的具体情况进行修改。
阅读全文