2010-11-30 21 views
7

J'essaie d'utiliser le PropertyPlaceholderConfigurer dans mon application. Mon applicationContext-test.xml charge très bien mon fichier de propriétés, mais mon applicationContext.xml lève une exception. Dans les deux cas, je charge mes fichier de propriétés comme ceci:Pourquoi mon contexte d'application normal ne peut-il pas charger mon fichier de propriétés?

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

Quand je lance mes tests, il ne se plaint pas, mais quand je commence mon serveur, je reçois cette 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 

Je me rend fou en essayant de faire fonctionner ça. Quelqu'un peut-il aider?

Répondre

8

Cela revient à l'endroit où différents contextes d'application recherchent leurs ressources. Un contexte de test unitaire regarde le classpath, mais un contexte webapp regarde à l'intérieur de la webapp. Donc, quand votre webapp recherche localdevelopment_Company.properties, il cherche un fichier à la racine de la webapp.

Si votre fichier est en fait sur le chemin de classe, alors vous devez remplacer la recherche par défaut de contexte webapp emplacement:

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