Java 谷歌应用程序引擎中的jasckson库不包括在白名单中

Java 谷歌应用程序引擎中的jasckson库不包括在白名单中,java,maven,google-app-engine,Java,Maven,Google App Engine,当我在代码中有这些导入或使用任何类和方法时,我从intelli J IDE得到这个错误 import com.fasterxml.jackson.core.type.TypeReference; import com.fasterxml.jackson.databind.ObjectMapper; Class 'com.fasterxml.jackson.databind.ObjectMapper' is not included in App Engine JRE White List

当我在代码中有这些导入或使用任何类和方法时,我从intelli J IDE得到这个错误

import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;

 Class 'com.fasterxml.jackson.databind.ObjectMapper' is not included in App Engine JRE White List
这不会导致任何Maven构建错误,但会在生产中导致任何错误。但是为什么IDE会标记错误呢。
类“com.fasterxml.jackson.core.type.TypeReference”未包含在App Engine JRE白名单中,这些导入不属于Java应用程序编程接口(Java API)的一部分
它们是创建的库,为了让您使用它们,您必须在java构建路径库中下载并添加jar文件

这些库是使用maven添加的,maven是一个google应用程序引擎项目。