gpt4 book ai didi

spring-mvc - Spring MVC : read file from src/main/resources

转载 作者:行者123 更新时间:2023-12-03 07:13:25 25 4
gpt4 key购买 nike

我有一个maven Spring项目,src/main/resources/xyz.xml里面有xml文件。我如何在 Spring MVC Controller 中读取它。

我正在使用

InputStream is = getClass().getResourceAsStream("classpath:xyz.xml");

但是isnull

最佳答案

Resource resource = new ClassPathResource(fileLocationInClasspath);
InputStream resourceInputStream = resource.getInputStream();

使用 ClassPathResource和接口(interface)resource 。但请确保您正确复制了资源目录(使用 maven),并且它没有丢失,例如,如果将测试作为测试上下文的一部分运行。

关于spring-mvc - Spring MVC : read file from src/main/resources,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22096983/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com