com.fasterxml.jackson.core版本问题,更新最新版本即可。

I had the same problem, it seems that:

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.0</version>
</dependency>

had dependency to jackson-annotations in version 2.8.0 which crashed somehow with my other jackson dependencies.

after modifying the dependency as follows:

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</exclusion>
</exclusions>
</dependency>

and adding explicit dependency on:

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.9.0</version>
</dependency>

problem was solved for me :)

https://stackoverflow.com/questions/43701983/spring-boot-cant-start-with-embedded-tomcat-error

最新文章

  1. 织梦cms更新新建的栏目提示:DedeTag Engine Create File False:C:/phpStudy/WWW/
  2. linux 记录用户操作记录日志
  3. 了解一下JavaScript的未来——ECMAScript5
  4. iOS 单例传值遇见问题
  5. [转] CentOS单独安装Apache Benchmark压力测试工具的办法
  6. 安卓第九天笔记-Activity
  7. PHP+mysql常用类库
  8. fancybox 关闭弹出窗口 parent.$.fancybox.close(); 无反应 fancybox 关闭弹出窗口父页面自动刷新,弹出子窗口前后事件
  9. Android manifest
  10. 清华集训2014 day1 task2 主旋律
  11. 打造MacOS版“XShell”
  12. (python走过的坑)OpenCV中错误opencv-3.3.1\modules\highgui\src\window.cpp:339: error: (-215) size.width&gt;0 &amp;&amp; size.height&gt;0 in function cv::imshow
  13. sql server 阻塞查询
  14. python中的全局变量和局部变量
  15. 数据分析面试题之Pandas中的groupby
  16. Android 新架构组件 -- WorkManager
  17. access十万级数据分页
  18. PowerShell 连接远程服务器
  19. sitecore系列教程之Sitecore个性化定制体验的内容策略
  20. typescript可索引接口 类类型接口

热门文章

  1. (剑指Offer)面试题8:旋转数组的最小数字
  2. vue - 子路由-路由嵌套
  3. 【转】非教育网中IPv4网络访问IPv6资源
  4. 百度地图API拾取坐标网址
  5. SQLSERVER中的 CEILING函数和 FLOOR函数
  6. knockoutjs -- if 绑定
  7. 转:sock_ev——linux平台socket事件框架(logTrace) .
  8. STS IDE 个性化修改
  9. mosquitto --- 单向认证
  10. 流类库继承体系(IO流,文件流,串流)和 字符串流的基本操作