关于Spring mvc 5整合SWAGGER 出现的com.fasterxml.jackson.databind.exc.InvalidDefinitionException

我是用maven导的jar包,出现这个的时候去看项目下 Maven Dependencies 下的 对应jar包(com.fasterxml.jackson.databind.exc),你会发现里面并没有这个类,这说明了当前的版本不匹配,我在下面给出我使用的,spring 环境是5.0.5。希望小哥们一切顺利。

<dependency>
        <groupId>io.springfoxgroupId>
        <artifactId>springfox-swagger2artifactId>
        <version>2.6.1version>
    dependency>
    <dependency>
        <groupId>io.springfoxgroupId>
        <artifactId>springfox-swagger-uiartifactId>
        <version>2.6.1version>
    dependency> 
    <dependency>
    <groupId>com.fasterxml.jackson.coregroupId>
    <artifactId>jackson-databindartifactId>
    <version>2.9.4version>
    dependency>
    <dependency>
    <groupId>com.fasterxml.jackson.coregroupId>
    <artifactId>jackson-annotationsartifactId>
    <version>2.9.4version>
    dependency>
    <dependency>
    <groupId>com.fasterxml.jackson.coregroupId>
    <artifactId>jackson-coreartifactId>
    <version>2.9.4version>
    dependency>

目前,我的已经成功了。各位出现什么问题,可以留言,大家一起讨论解决。

你可能感兴趣的:(ssh框架)