Java.lang.NoClassDefFoundError: com/fasterxml/jackson/databind/exc/InvalidDefinitionException

后端 未结 6 1903
花落未央
花落未央 2020-12-01 11:54

I have updated my dependecies like you said in your comment and i have this now :

org.springframework.context.ApplicationContextException: Unable to start em         


        
6条回答
  •  感动是毒
    2020-12-01 12:13

    If issue remains even after updating dependency version, then delete everything present under
    C:\Users\[your_username]\.m2\repository\com\fasterxml

    And, make sure following dependencies are present:

                
                    com.fasterxml.jackson.core
                    jackson-databind
                    ${jackson.version}
                
    
                
                    com.fasterxml.jackson.core
                    jackson-annotations
                    ${jackson.version}
                
    
                
                    com.fasterxml.jackson.core
                    jackson-core
                    ${jackson.version}
                
    

提交回复
热议问题