2016-07-21 3 views
0

Я работаю с Spring MVC. У меня есть динамический веб-проект.Весна mvc как восстановить значение из .properties

Структура проекта является

enter image description here

У меня есть correos.properties в/WEB-INF/классы.

correos.properties является

correosalida = xxx 

Я хочу, чтобы получить собственность от correos.properties

грузоотправитель является

<beans xmlns="http://www.springframework.org/schema/beans" 
    xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:context="http://www.springframework.org/schema/context" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:schemaLocation=" 
     http://www.springframework.org/schema/beans  
     http://www.springframework.org/schema/beans/spring-beans.xsd 
     http://www.springframework.org/schema/mvc 
     http://www.springframework.org/schema/mvc/spring-mvc.xsd 
     http://www.springframework.org/schema/context 
     http://www.springframework.org/schema/context/spring-context.xsd 
     http://www.jasypt.org/schema/encryption 
     http://www.jasypt.org/schema/encryption/jasypt-spring31-encryption-1.xsd"> 

    <context:annotation-config /> 
    <import resource="hibernate-context.xml" /> 
    <context:component-scan base-package="eusurvey" /> 
    <bean id="propertyPlaceholderConfigurer" 
     class="org.jasypt.spring31.properties.EncryptablePropertyPlaceholderConfigurer"> 
     <constructor-arg ref="configurationEncryptor" /> 
     <property name="location" value="/WEB-INF/spring.properties" /> 
    </bean> 

    <bean id="configurationEncryptor" class="org.jasypt.encryption.pbe.StandardPBEStringEncryptor"> 
     <property name="config" ref="environmentVariablesConfiguration" /> 
    </bean> 

    <bean id="environmentVariablesConfiguration" 
     class="org.jasypt.encryption.pbe.config.EnvironmentStringPBEConfig"> 
     <property name="algorithm" value="PBEWITHSHA256AND256BITAES-CBC-BC" /> 
     <property name="passwordEnvName" value="CAS_PBE_PASSWORD" /> 
     <property name="providerClassName" 
      value="org.bouncycastle.jce.provider.BouncyCastleProvider" /> 
     <property name="providerName" value="BC" /> 
    </bean> 




    <mvc:annotation-driven /> 

    <mvc:view-controller path="encuesta/*" 
     view-name="encuesta/actualizarCorreoC.jsp" /> 


    <bean id="messageSource" 
     class="org.springframework.context.support.ReloadableResourceBundleMessageSource"> 
     <property name="basename" value="WEB-INF/classes/messages" /> 
    </bean> 


    <bean 
     class="org.springframework.web.servlet.view.InternalResourceViewResolver"> 
     <property name="prefix" value="/WEB-INF/jsp/" /> 
     <property name="suffix" value=".jsp" /> 
    </bean> 
    <mvc:resources mapping="/resources/**" location="/resources/" /> 



    <context:property-placeholder location="WEB-INF/classes/correos.properties" order="1" ignore-unresolvable="true" /> 






</beans> 

LeerProperties.java является

package eusurvey.auxiliar; 

import org.springframework.beans.factory.annotation.Value; 

public class LeerProperties { 

    @Value("${correos.correosalida}") 
    private String correosalida; 

     public String PropertyValue() { 

      return correosalida; 
     } 
} 

Значение коррелялиды равно нулю.

Как я могу получить собственность от correos.properties?

ответ

0

Вы пытались добраться до файла с помощью classpath?

Это должно быть так:

<context:property-placeholder location="classpath:correos.properties" order="1" ignore-unresolvable="true" /> 

EDIT:

Попробуйте загрузить этот путь:

<util:properties id="correos" location="classpath:correos.properties"/> 

И не должно быть с "#" вместо " $ "?

@Value("#{correos.correosalida}") 
+0

Я изменил его. Я получаю нулевое значение – user3712581

Смежные вопросы