我的项目使用Spring MVC作为前端,使用EJB作为后端。当我使用jackson序列化和反序列化控制器级别的json字符串下面的代码正常工作但服务层它给出了一个错误" 类文件com.fasterxml.jackson.core.JsonParseException not found & #34;
ObjectMapper mapper = new ObjectMapper();
Object convertedObject = mapper.readValue(jsonString, class);
我的模块pom文件包含依赖项。
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.3.0</version>
</dependency>
创建对象后,此错误出现mapper
。
错误:Error:(247, 67) java: cannot access com.fasterxml.jackson.core.JsonParseException
class file for com.fasterxml.jackson.core.JsonParseException not found
答案 0 :(得分:2)
您还需要包含
span