@JsonFormat(shape = JsonFormat.Shape.NUMBER) 使用该注解需要引入什么依赖
时间: 2023-10-19 09:34:35 浏览: 211
Json使用需要依赖包
使用@JsonFormat注解需要引入以下依赖:
```xml
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.12.3</version>
</dependency>
```
这是因为@JsonFormat注解是Jackson库中的一部分,而jackson-annotations是Jackson库的核心依赖之一。
阅读全文