gpt4 book ai didi

java - 由于属性文件位置类型,应用程序或集成测试 Spring 上下文创建失败

转载 作者:行者123 更新时间:2023-11-28 22:47:27 26 4
gpt4 key购买 nike

我们的应用程序应该使用在部署时在主机文件系统上创建的 .properties 文件,因此它不会在构建时与应用程序 .war 捆绑在一起.它在 Spring 应用程序上下文创建期间由加载器类打开和读取

<bean id="propertiesLoader" class="com....PropertiesLoader">
<property name="propertiesFileLocation" value="${PROPERTIES_FILE_LOCATION}"/>
...

其中 PROPERTIES_FILE_LOCATION 的文件路径值在应用程序 src\main\resources 中的 application.properties 文件中定义>-web maven 模块

PROPERTIES_FILE_LOCATION=/home/.../propertyfilename.properties

并且 propertiesFileLocation 字段的类型是 String,它通过 PropertiesLoader 中的 new FileInputStream(propertiesFileLocation) 访问。 java

通过此设置,应用程序上下文创建成功。但是,我们的项目中也有一些集成测试,它们还为它们的执行设置了 Spring 上下文。我们虽然将 propertyfilename.properties 文件的副本存储到 -it maven 模块的 src\test\resources 中,并从其 中引用它code>it.properties 喜欢

PROPERTIES_FILE_LOCATION=classpath:somedirectory/propertyfilename.properties    

但是在创建集成测试上下文的过程中,我们收到以下异常

[ERROR] Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean
with name 'propertiesLoader' defined in URL
[ERROR] Caused by: java.io.FileNotFoundException: classpath:somedirectory\propertyfilename.properties
(The filename, directory name, or volume label syntax is incorrect)

现在,如果我们将 propertiesFileLocation 字段的类型修改为 org.springframework.core.io.Resource 并通过 propertiesFileLocation.getInputStream() 访问它PropertiesLoader.java 中,这使得集成测试上下文创建成功,但同时真正的应用程序上下文创建失败并显示

Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'propertiesLoader' defined in URL 
[file:/.../tomcat/work/Catalina/localhost/_/loader/conf/spring/springmvc/springmvc-util.xml]: Invocation of init method failed;
nested exception is java.io.FileNotFoundException: Could not open ServletContext resource [/home/.../propertyfilename.properties]

这似乎是一个“死锁”情况,因为应用程序或集成测试上下文创建失败。有没有一种方法可以成功创建两个上下文?

最佳答案

资源加载在 Spring References Guide 中有很好的记录。 .如果您没有为资源添加加载位置前缀,它将默认为 ApplicationContext 的默认位置。对于将作为存档根目录的 Web 应用程序,基本上是 WEB-INF 目录中的内容。\

您想要为此资源加载一个文件资源,该资源以 file: 为前缀,并在您的测试中使用 classpath: 从 `classpath.这样,无论应用程序上下文使用哪个默认位置,它都能正常工作。

关于java - 由于属性文件位置类型,应用程序或集成测试 Spring 上下文创建失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53896841/

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