class file for com.fasterxml.jackson.core.JsonParseException not found

前端 未结 1 810
感情败类
感情败类 2021-01-23 08:36

My project use Spring MVC for front End and EJB for back-end. when i use jackson to serialize and deserialize json string in controller level bellow code working properly but s

相关标签:
1条回答
  • 2021-01-23 09:01

    You also need to include

    <dependency>
        <groupId>com.fasterxml.jackson.core</groupId>
        <artifactId>jackson-core</artifactId>
        <version>2.3.2</version>
    </dependency>
    
    0 讨论(0)
提交回复
热议问题