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

后端 未结 6 1893
花落未央
花落未央 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条回答
  •  萌比男神i
    2020-12-01 12:13

    Replace the dependency in the POM.xml file

    
      com.fasterxml.jackson.core
      jackson-core
      2.2.3
    
    

    By the dependency

        
            com.fasterxml.jackson.core
            jackson-databind
            2.9.4
        
    

提交回复
热议问题