maven 将Jackson-databind 2.14.2添加到pom,在Pom.xml中创建错误

yqkkidmi  于 2023-03-22  发布在  Maven
关注(0)|答案(1)|浏览(289)

这是我试图添加的Jackson数据绑定工件

<dependency>
        <groupId>com.fasterxml.jackson.core</groupId>
        <artifactId>jackson-databind</artifactId>
        <version>2.14.1</version>
    </dependency>

将Jacksondatabind工件添加到pom.xml中,在pom.xml文件中创建错误,因此,我无法导入ObjectMapper。

下面是我写的代码wt i hv从json文件导入数据

public List<HashMap<String, String>> getJsonData(String JsonFilePath)
{
    String JsonContent=FileUtils.readFileToString(new File(System.getProperty("user.dir")+"\\src\\test\\java\\org\\mobileRecharge\\testData\\Requirements.json"),StandardCharsets.UTF_8);
    ObjectMapper mapper = new ObjectMapper();
    List<HashMap<String, String>> data=mapper.readValue(JsonContent,
            new TypeReference<List<HashMap<String, String>>>(){
        
    });
    return data;

}
eyh26e7m

eyh26e7m1#

这是我试图添加的Jackson数据绑定工件

<dependency>
        <groupId>com.fasterxml.jackson.core</groupId>
        <artifactId>jackson-databind</artifactId>
        <version>2.14.1</version>
    </dependency>

相关问题