为什么我的常规应用程序上下文不能加载我的属性文件? [英] Why can't my regular application context load my properties file?

查看:58
本文介绍了为什么我的常规应用程序上下文不能加载我的属性文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在我的应用程序中使用 PropertyPlaceholderConfigurer.我的 applicationContext-test.xml 加载我的属性文件就好了,但我的 applicationContext.xml 抛出异常.在这两种情况下,我都像这样加载我的属性文件:

I'm trying to use the PropertyPlaceholderConfigurer in my application. My applicationContext-test.xml loads my properties file just fine, but my applicationContext.xml throws an exception. In both cases, I'm loading my properties file like this:

<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">    
    <property name="location">
        <value>localdevelopment_Company.properties</value>
    </property>
</bean>

当我运行我的测试时,它没有抱怨,但是当我启动我的服务器时,我得到这个异常:

When I run my tests, it does not complain, but when I start my server, I get this exception:

SEVERE: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener
org.springframework.beans.factory.BeanInitializationException: Could not load properties; nested exception is java.io.FileNotFoundException: Could not open ServletContext resource [/localdevelopment_Company.properties]
    at org.springframework.beans.factory.config.PropertyResourceConfigurer.postProcessBeanFactory(PropertyResourceConfigurer.java:78)
    at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:663)
    at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:638)
    at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:407)
    at org.springframework.web.context.ContextLoader.createWebApplicationContext(ContextLoader.java:276)
    at org.springframework.web.context.ContextLoader.initWebApplicationContext(ContextLoader.java:197)
    at org.springframework.web.context.ContextLoaderListener.contextInitialized(ContextLoaderListener.java:47)
    at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:4135)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:4630)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:785)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:445)
    at org.apache.catalina.core.StandardService.start(StandardService.java:519)
    at org.apache.catalina.core.StandardServer.start(StandardServer.java:710)
    at org.apache.catalina.startup.Catalina.start(Catalina.java:581)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:289)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:414)
Caused by: java.io.FileNotFoundException: Could not open ServletContext resource [/localdevelopment_Company.properties]
    at org.springframework.web.context.support.ServletContextResource.getInputStream(ServletContextResource.java:117)
    at org.springframework.core.io.support.PropertiesLoaderSupport.loadProperties(PropertiesLoaderSupport.java:181)
    at org.springframework.core.io.support.PropertiesLoaderSupport.mergeProperties(PropertiesLoaderSupport.java:161)
    at org.springframework.beans.factory.config.PropertyResourceConfigurer.postProcessBeanFactory(PropertyResourceConfigurer.java:69)
    ... 21 more

为了让它发挥作用,我快把自己逼疯了.有人可以帮忙吗?

I'm driving myself crazy trying to get this to work. Can someone help?

推荐答案

这归结为不同的应用程序上下文在何处寻找其资源.

This comes down to where different application contexts look for their resources.

单元测试上下文查看类路径,而 webapp 上下文查看 webapp 内部.因此,当您的 Web 应用程序查找 localdevelopment_Company.properties 时,它正在查找 Web 应用程序根目录下的文件.

A unit test context looks at the classpath, but a webapp context looks inside the webapp. So when your webapp looks for localdevelopment_Company.properties, it's looking for a file at the root of the webapp.

如果您的文件实际上在类路径上,那么您需要覆盖 webapp 上下文的默认搜索位置:

If your file is actually on the classpath, then you need to override the webapp context's default search location:

<value>classpath:localdevelopment_Company.properties</value>

这篇关于为什么我的常规应用程序上下文不能加载我的属性文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆