springboot4 启动 Unable to find JSON tool
原因:未引用JSON工具包导致
解决方案
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
原因:未引用JSON工具包导致
解决方案
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>