报错位置:
com.volcengine.ark.runtime.service.ArkService ==》line 108
mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); // Cannot resolve symbol 'SNAKE_CASE'
解决方式:
更换为:
mapper.setPropertyNamingStrategy(PropertyNamingStrategies.SNAKE_CASE);
问题查找:
1.在新版本jackson.databind跟springboot4.0中,要求可以使用PropertyNamingStrategy或者PropertyNamingStrategies

2.但是在>=2.12版本的jackson.databind中

已经禁止使用了
3.新版本中使用PropertyNamingStrategies下的SNAKE_CASE
